Android 中打开文件对话框?
我可以在 Android 中使用 OpenFileDialog 吗?我想从 OpenFileDialog 选择图像并将图像保存到 SQLite 数据库和资源文件夹。我该怎么做?
Can I use OpenFileDialog in Android? I want to choose image from OpenFileDialog and save image to a SQLite database and resource folder. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个链接帮助我
创建了
FolderLayout< /code> 这可能会帮助你。
folderview.xml
FolderLayout.java
和一个接口
IFolderItemListener
,用于添加单击fileItem
时执行的操作IFolderItemListener.java
还有一个用于定义行 row.xml 的 xml
如何
使用在您的应用程序中
在您的 xml 中,
folders.xml
在您的 Activity 中,
SampleFolderActivity.java
导入所需的库。希望这些对你有帮助...
This link helped me
I have created
FolderLayout
which may help you.folderview.xml
FolderLayout.java
And an Interface
IFolderItemListener
to add what to do when afileItem
is clickedIFolderItemListener.java
Also an xml to define the row
row.xml
How to Use in your Application
In your xml,
folders.xml
In Your Activity,
SampleFolderActivity.java
Import the libraries needed. Hope these help you...
检查这个 Android 文件对话框
我希望您知道如何下载源代码。您可能需要像 tortoise 这样的程序
Check this Android File Dialog
I hope you know how to download the source... You might need a program like tortoise
OpenFileDialog 是我编写的自定义对话框。您几乎只需打电话
即可获得您想要的东西。
OpenFileDialog is a custom dialog I wrote. You pretty much just have to call
to get what you want.