Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何实现将文件从文件系统附加到我的应用程序的功能。我可以使用一些库,还是我应该自己编程?或者我可以实现其他类似应用程序的代码并使用它们?
文件浏览器:
关联
文件浏览器的示例代码。或者你可以让用户输入位置EditText并让应用记住它。
EditText
要使用外部存储(如 SD 卡),请参阅此处
记住文件位置:
使用共享首选项
它是一种比 SQLite 数据库更简单的方式来保存持久性数据
发送到服务器:
这是一个如何使用 HTTP POST 发送到服务器的示例