|
@@ -1,13 +1,11 @@
|
|
package com.pan_american.android.ui.group_invite_official.official_visits
|
|
package com.pan_american.android.ui.group_invite_official.official_visits
|
|
|
|
|
|
import android.Manifest
|
|
import android.Manifest
|
|
-import android.content.ContentResolver
|
|
|
|
|
|
+import android.content.Intent
|
|
import android.content.pm.PackageManager
|
|
import android.content.pm.PackageManager
|
|
import android.net.Uri
|
|
import android.net.Uri
|
|
import android.os.Build
|
|
import android.os.Build
|
|
import android.os.Bundle
|
|
import android.os.Bundle
|
|
-import android.os.Environment
|
|
|
|
-import android.provider.DocumentsContract
|
|
|
|
import android.provider.MediaStore
|
|
import android.provider.MediaStore
|
|
import android.text.Editable
|
|
import android.text.Editable
|
|
import android.text.TextWatcher
|
|
import android.text.TextWatcher
|
|
@@ -18,6 +16,7 @@ import android.widget.EditText
|
|
import android.widget.LinearLayout
|
|
import android.widget.LinearLayout
|
|
import android.widget.PopupWindow
|
|
import android.widget.PopupWindow
|
|
import android.widget.TextView
|
|
import android.widget.TextView
|
|
|
|
+import androidx.activity.result.ActivityResultCallback
|
|
import androidx.activity.result.ActivityResultLauncher
|
|
import androidx.activity.result.ActivityResultLauncher
|
|
import androidx.activity.result.contract.ActivityResultContracts
|
|
import androidx.activity.result.contract.ActivityResultContracts
|
|
import androidx.appcompat.widget.AppCompatImageView
|
|
import androidx.appcompat.widget.AppCompatImageView
|
|
@@ -61,6 +60,7 @@ import retrofit2.Callback
|
|
import retrofit2.Response
|
|
import retrofit2.Response
|
|
import java.io.File
|
|
import java.io.File
|
|
|
|
|
|
|
|
+
|
|
class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>() {
|
|
class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>() {
|
|
|
|
|
|
private var fromList = false
|
|
private var fromList = false
|
|
@@ -81,7 +81,7 @@ class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>
|
|
|
|
|
|
private val officialTypeList = ArrayList<Selector>()
|
|
private val officialTypeList = ArrayList<Selector>()
|
|
|
|
|
|
- private val officialAttributeList = ArrayList<Selector>()
|
|
|
|
|
|
+// private val officialAttributeList = ArrayList<Selector>()
|
|
|
|
|
|
private val photoList = ArrayList<PictureListItem>()
|
|
private val photoList = ArrayList<PictureListItem>()
|
|
|
|
|
|
@@ -89,14 +89,14 @@ class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>
|
|
|
|
|
|
private var officialTypeId = 0
|
|
private var officialTypeId = 0
|
|
|
|
|
|
- private var officialAttributeId = 0
|
|
|
|
|
|
+// private var officialAttributeId = 0
|
|
|
|
|
|
private var checkCommitType = 0
|
|
private var checkCommitType = 0
|
|
|
|
|
|
private val updateOfficialVisitRequest = UpdateOfficialVisitRequest()
|
|
private val updateOfficialVisitRequest = UpdateOfficialVisitRequest()
|
|
|
|
|
|
//监听相册事件回调
|
|
//监听相册事件回调
|
|
- private lateinit var result: ActivityResultLauncher<String>
|
|
|
|
|
|
+ private lateinit var result: ActivityResultLauncher<Intent>
|
|
|
|
|
|
override fun getViewBinding() = ActivityAddOfficialVisitsBinding.inflate(layoutInflater)
|
|
override fun getViewBinding() = ActivityAddOfficialVisitsBinding.inflate(layoutInflater)
|
|
|
|
|
|
@@ -119,23 +119,30 @@ class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>
|
|
pageSize = 10
|
|
pageSize = 10
|
|
}
|
|
}
|
|
|
|
|
|
- result = registerForActivityResult(ActivityResultContracts.GetContent()) {
|
|
|
|
- if (it != null) {
|
|
|
|
|
|
+ result = registerForActivityResult(
|
|
|
|
+ ActivityResultContracts.StartActivityForResult(),
|
|
|
|
+ ActivityResultCallback { result ->
|
|
|
|
+ if (result.resultCode == RESULT_OK) {
|
|
|
|
+ val data: Intent? = result.data
|
|
|
|
+ if (data != null) {
|
|
|
|
+ val selectedImageUri = data.data
|
|
|
|
+ if (selectedImageUri != null) {
|
|
|
|
+ photoList.add(PictureListItem().apply {
|
|
|
|
+ picName = File(uri2Path(selectedImageUri)).name
|
|
|
|
+
|
|
|
|
+ if (picName.isBlank()) {
|
|
|
|
+ showMessage(resources.getString(R.string.picture_select_error_hint))
|
|
|
|
+ return@ActivityResultCallback
|
|
|
|
+ }
|
|
|
|
|
|
- photoList.add(PictureListItem().apply {
|
|
|
|
- picName = uri2Path(it).substringAfterLast("/")
|
|
|
|
|
|
+ uri = selectedImageUri
|
|
|
|
+ })
|
|
|
|
|
|
- if (picName.isBlank()) {
|
|
|
|
- showMessage(resources.getString(R.string.picture_select_error_hint))
|
|
|
|
- return@registerForActivityResult
|
|
|
|
|
|
+ initPictureList()
|
|
|
|
+ }
|
|
}
|
|
}
|
|
-
|
|
|
|
- uri = it
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
- initPictureList()
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
|
|
initTitle()
|
|
initTitle()
|
|
getSelectDataSource()
|
|
getSelectDataSource()
|
|
@@ -880,7 +887,9 @@ class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>
|
|
}
|
|
}
|
|
|
|
|
|
private fun openGallery() {
|
|
private fun openGallery() {
|
|
- result.launch("image/*")
|
|
|
|
|
|
+ val intent = Intent(Intent.ACTION_PICK)
|
|
|
|
+ intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*")
|
|
|
|
+ result.launch(intent)
|
|
}
|
|
}
|
|
|
|
|
|
private fun initPictureList() {
|
|
private fun initPictureList() {
|
|
@@ -968,49 +977,62 @@ class AddOfficialVisitsActivity : BaseActivity<ActivityAddOfficialVisitsBinding>
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private fun uri2Path(uri: Uri?): String {
|
|
|
|
- if (uri == null) {
|
|
|
|
- return ""
|
|
|
|
- }
|
|
|
|
- if (ContentResolver.SCHEME_FILE == uri.scheme) {
|
|
|
|
- return uri.path.toString()
|
|
|
|
- } else if (ContentResolver.SCHEME_CONTENT == uri.scheme) {
|
|
|
|
- val authority = uri.authority
|
|
|
|
- if (authority!!.startsWith("com.android.externalstorage")) {
|
|
|
|
- return Environment.getExternalStorageDirectory()
|
|
|
|
- .toString() + "/" + uri.path!!.split(":".toRegex())
|
|
|
|
- .dropLastWhile { it.isEmpty() }
|
|
|
|
- .toTypedArray()[1]
|
|
|
|
- } else {
|
|
|
|
- var idStr = ""
|
|
|
|
- if (authority == "media") {
|
|
|
|
- idStr = uri.toString().substring(uri.toString().lastIndexOf('/') + 1)
|
|
|
|
- } else if (authority.startsWith("com.android.providers")) {
|
|
|
|
- idStr = DocumentsContract.getDocumentId(uri).split(":".toRegex())
|
|
|
|
- .dropLastWhile { it.isEmpty() }
|
|
|
|
- .toTypedArray()[1]
|
|
|
|
- }
|
|
|
|
- val contentResolver = OASystem.context.contentResolver
|
|
|
|
- val cursor = contentResolver.query(
|
|
|
|
- MediaStore.Files.getContentUri("external"),
|
|
|
|
- arrayOf(MediaStore.Files.FileColumns.DATA),
|
|
|
|
- "_id=?",
|
|
|
|
- arrayOf(idStr),
|
|
|
|
- null
|
|
|
|
- )
|
|
|
|
- if (cursor != null) {
|
|
|
|
- cursor.moveToFirst()
|
|
|
|
- try {
|
|
|
|
- val idx = cursor.getColumnIndex(MediaStore.Files.FileColumns.DATA)
|
|
|
|
- return cursor.getString(idx)
|
|
|
|
- } catch (_: Exception) {
|
|
|
|
- } finally {
|
|
|
|
- cursor.close()
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+// private fun uri2Path(uri: Uri?): String {
|
|
|
|
+// if (uri == null) {
|
|
|
|
+// return ""
|
|
|
|
+// }
|
|
|
|
+// if (ContentResolver.SCHEME_FILE == uri.scheme) {
|
|
|
|
+// return uri.path.toString()
|
|
|
|
+// } else if (ContentResolver.SCHEME_CONTENT == uri.scheme) {
|
|
|
|
+// val authority = uri.authority
|
|
|
|
+// if (authority!!.startsWith("com.android.externalstorage")) {
|
|
|
|
+// return Environment.getExternalStorageDirectory()
|
|
|
|
+// .toString() + "/" + uri.path!!.split(":".toRegex())
|
|
|
|
+// .dropLastWhile { it.isEmpty() }
|
|
|
|
+// .toTypedArray()[1]
|
|
|
|
+// } else {
|
|
|
|
+// var idStr = ""
|
|
|
|
+// if (authority == "media") {
|
|
|
|
+// idStr = uri.toString().substring(uri.toString().lastIndexOf('/') + 1)
|
|
|
|
+// } else if (authority.startsWith("com.android.providers")) {
|
|
|
|
+// idStr = DocumentsContract.getDocumentId(uri).split(":".toRegex())
|
|
|
|
+// .dropLastWhile { it.isEmpty() }
|
|
|
|
+// .toTypedArray()[1]
|
|
|
|
+// }
|
|
|
|
+// val contentResolver = OASystem.context.contentResolver
|
|
|
|
+// val cursor = contentResolver.query(
|
|
|
|
+// MediaStore.Files.getContentUri("external"),
|
|
|
|
+// arrayOf(MediaStore.Files.FileColumns.DATA),
|
|
|
|
+// "_id=?",
|
|
|
|
+// arrayOf(idStr),
|
|
|
|
+// null
|
|
|
|
+// )
|
|
|
|
+// if (cursor != null) {
|
|
|
|
+// cursor.moveToFirst()
|
|
|
|
+// try {
|
|
|
|
+// val idx = cursor.getColumnIndex(MediaStore.Files.FileColumns.DATA)
|
|
|
|
+// return cursor.getString(idx)
|
|
|
|
+// } catch (_: Exception) {
|
|
|
|
+// } finally {
|
|
|
|
+// cursor.close()
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// return ""
|
|
|
|
+// }
|
|
|
|
+
|
|
|
|
+ private fun uri2Path(uri: Uri): String {
|
|
|
|
+ var filePath = ""
|
|
|
|
+ val projection = arrayOf(MediaStore.Images.Media.DATA)
|
|
|
|
+ val cursor = contentResolver.query(uri, projection, null, null, null)!!
|
|
|
|
+ if (cursor.moveToFirst()) {
|
|
|
|
+ val columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA)
|
|
|
|
+ filePath = cursor.getString(columnIndex)
|
|
|
|
+ cursor.close()
|
|
}
|
|
}
|
|
- return ""
|
|
|
|
|
|
+
|
|
|
|
+ return filePath
|
|
}
|
|
}
|
|
|
|
|
|
private fun updateOfficialVisitData() {
|
|
private fun updateOfficialVisitData() {
|