Android如何获取本地文件目录
更新时间:2024年04月02日 11:02:42 作者:糖心荷包蛋°
这篇文章主要介绍了Android如何获取本地文件目录,通过点击按钮,获取本地文件目录,可以选择图片,展示选取的对应图片和展示存储路径,感兴趣的朋友跟随小编一起看看吧
一、实现效果
一个简单的demo。点击按钮,获取本地文件目录,可以选择图片,展示选取的对应图片和展示存储路径。如图所示:
二、实现方式
1. 权限
AndroidManifest.xml文件里面添加权限
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2. 布局
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <ImageView android:id="@+id/main_iv" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/main_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/file_store" android:textSize="20sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="@+id/main_iv"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/main_tx" tools:ignore="MissingConstraints" /> </androidx.constraintlayout.widget.ConstraintLayout>
3. kotlin代码
class MainActivity : AppCompatActivity() { private lateinit var btn2: Button private lateinit var ivImage: ImageView private lateinit var btx:TextView private lateinit var activityResultLauncher: ActivityResultLauncher<Intent> @SuppressLint("MissingInflatedId") override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) btn2 = findViewById(R.id.main_btn) ivImage = findViewById(R.id.main_iv) btx=findViewById(R.id.main_tx) activityResultLauncher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result -> if (result.resultCode == RESULT_OK) { Log.e(this::class.java.name, "Result: " + result.data.toString()) // 处理返回的图片数据 val uri: Uri? = result.data?.data uri?.let { ivImage.setImageURI(it) Log.e(this::class.java.name, "Uri: $it") // 获取并显示图片的路径 btx.text=getPathFromUri(it) } } } btn2.setOnClickListener { val intent = Intent(Intent.ACTION_PICK).apply { data = MediaStore.Images.Media.EXTERNAL_CONTENT_URI type = "image/*" } activityResultLauncher.launch(intent) } } //返回图片的路径字符串 private fun getPathFromUri(uri:Uri):String{ return uri.path?:"Unknown" } }
以上就是全部内容
主页有更多 Android 相关文章,欢迎点赞收藏~
到此这篇关于Android如何获取本地文件目录的文章就介绍到这了,更多相关Android获取本地文件目录内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Qt qml中listview 列表视图控件(下拉刷新、上拉分页、滚动轴)
这篇文章主要介绍了Qt qml中listview 列表视图控件(下拉刷新、上拉分页、滚动轴) 的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下2016-07-07Android编程实现QQ表情的发送和接收完整实例(附源码)
这篇文章主要介绍了Android编程实现QQ表情的发送和接收的方法,涉及Android图片资源、正则表达式及对话框的相关操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下2015-11-11
最新评论