diff --git a/README.md b/README.md
index e9c3061e..bda7e7bb 100644
--- a/README.md
+++ b/README.md
@@ -10,8 +10,8 @@ Contains no ads or unnecessary permissions. It is fully opensource, provides cus
This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com
-
-
+
+

diff --git a/app/build.gradle b/app/build.gradle
index d0459fe6..33bb03be 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -9,13 +9,12 @@ if (keystorePropertiesFile.exists()) {
}
android {
- compileSdkVersion 29
- buildToolsVersion "29.0.3"
+ compileSdkVersion 30
defaultConfig {
applicationId "com.simplemobiletools.filemanager.pro"
minSdkVersion 21
- targetSdkVersion 29
+ targetSdkVersion 30
versionCode 110
versionName "6.10.1"
multiDexEnabled true
@@ -58,7 +57,7 @@ android {
}
dependencies {
- implementation 'com.github.SimpleMobileTools:Simple-Commons:5079455be9'
+ implementation 'com.github.SimpleMobileTools:Simple-Commons:51f1996098'
implementation 'com.github.Stericson:RootTools:df729dcb13'
implementation 'com.github.Stericson:RootShell:1.6'
implementation 'com.alexvasilkov:gesture-views:2.5.2'
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 3f67a418..728a26c4 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -6,6 +6,7 @@
+
-
-
-
-
Unit) {
+ actionOnPermission = null
+ if (hasStoragePermission()) {
+ callback(true)
+ } else {
+ if (isRPlus()) {
+ ConfirmationAdvancedDialog(this, "", R.string.access_storage_prompt, R.string.ok, 0) { success ->
+ if (success ) {
+ isAskingPermissions = true
+ actionOnPermission = callback
+ try {
+ val intent = Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION)
+ intent.addCategory("android.intent.category.DEFAULT")
+ intent.data = Uri.parse("package:$packageName")
+ startActivityForResult(intent, MANAGE_STORAGE_RC)
+ } catch (e: Exception) {
+ showErrorToast(e)
+ val intent = Intent()
+ intent.action = Settings.ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION
+ startActivityForResult(intent, MANAGE_STORAGE_RC)
+ }
+ } else {
+ finish()
+ }
+ }
+ } else {
+ handlePermission(PERMISSION_WRITE_STORAGE, callback)
+ }
+ }
+ }
+
+ @SuppressLint("NewApi")
+ private fun hasStoragePermission(): Boolean {
+ return if (isRPlus()) {
+ Environment.isExternalStorageManager()
+ } else {
+ hasPermission(PERMISSION_WRITE_STORAGE)
+ }
+ }
+
+ @SuppressLint("NewApi")
+ override fun onActivityResult(requestCode: Int, resultCode: Int, resultData: Intent?) {
+ super.onActivityResult(requestCode, resultCode, resultData)
+ isAskingPermissions = false
+ if (requestCode == MANAGE_STORAGE_RC && isRPlus()) {
+ actionOnPermission?.invoke(Environment.isExternalStorageManager())
+ }
+ }
+
private fun initFileManager(refreshRecents: Boolean) {
if (intent.action == Intent.ACTION_VIEW && intent.data != null) {
val data = intent.data
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MimeTypesActivity.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MimeTypesActivity.kt
index 6d89e220..7a6e236b 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MimeTypesActivity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MimeTypesActivity.kt
@@ -61,6 +61,9 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
ensureBackgroundThread {
reFetchItems()
}
+
+ val adjustedPrimaryColor = getAdjustedPrimaryColor()
+ mimetypes_fastscroller.updateColors(adjustedPrimaryColor, adjustedPrimaryColor.getContrastColor())
}
override fun onCreateOptionsMenu(menu: Menu): Boolean {
@@ -130,13 +133,13 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
lastSearchedText = searchText
when {
searchText.isEmpty() -> {
- mimetypes_list.beVisible()
+ mimetypes_fastscroller.beVisible()
getRecyclerAdapter()?.updateItems(storedItems)
mimetypes_placeholder.beGoneIf(storedItems.isNotEmpty())
mimetypes_placeholder_2.beGone()
}
searchText.length == 1 -> {
- mimetypes_list.beGone()
+ mimetypes_fastscroller.beGone()
mimetypes_placeholder.beVisible()
mimetypes_placeholder_2.beVisible()
}
@@ -150,14 +153,9 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
runOnUiThread {
getRecyclerAdapter()?.updateItems(listItems, text)
- mimetypes_list.beVisibleIf(listItems.isNotEmpty())
+ mimetypes_fastscroller.beVisibleIf(listItems.isNotEmpty())
mimetypes_placeholder.beVisibleIf(listItems.isEmpty())
mimetypes_placeholder_2.beGone()
-
- mimetypes_list.onGlobalLayout {
- items_fastscroller.setScrollToY(mimetypes_list.computeVerticalScrollOffset())
- calculateContentHeight(listItems)
- }
}
}
}
@@ -232,7 +230,7 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
isSearchOpen = false
lastSearchedText = ""
- mimetypes_list.beVisible()
+ mimetypes_fastscroller.beVisible()
mimetypes_placeholder.beGoneIf(storedItems.isNotEmpty())
mimetypes_placeholder_2.beGone()
}
@@ -321,7 +319,7 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
}
storedItems = items
- ItemsAdapter(this as SimpleActivity, storedItems, this, mimetypes_list, false, items_fastscroller, null) {
+ ItemsAdapter(this as SimpleActivity, storedItems, this, mimetypes_list, false, null) {
tryOpenPathIntent((it as ListItem).path, false)
}.apply {
setupZoomListener(zoomListener)
@@ -332,13 +330,6 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
mimetypes_list.scheduleLayoutAnimation()
}
- val dateFormat = config.dateFormat
- val timeFormat = getTimeFormat()
- items_fastscroller.setViews(mimetypes_list) {
- val listItem = getRecyclerAdapter()?.listItems?.getOrNull(it)
- items_fastscroller.updateBubbleText(listItem?.getBubbleText(this, dateFormat, timeFormat) ?: "")
- }
-
mimetypes_placeholder.beVisibleIf(items.isEmpty())
}
@@ -390,18 +381,9 @@ class MimeTypesActivity : SimpleActivity(), ItemOperationsListener {
invalidateOptionsMenu()
getRecyclerAdapter()?.apply {
notifyItemRangeChanged(0, listItems.size)
- calculateContentHeight(listItems)
}
}
- private fun calculateContentHeight(items: MutableList) {
- val layoutManager = mimetypes_list.layoutManager as MyGridLayoutManager
- val thumbnailHeight = layoutManager.getChildAt(0)?.height ?: 0
- val fullHeight = ((items.size - 1) / layoutManager.spanCount + 1) * thumbnailHeight
- items_fastscroller.setContentHeight(fullHeight)
- items_fastscroller.setScrollToY(mimetypes_list.computeVerticalScrollOffset())
- }
-
private fun setupLayoutManager() {
if (config.getFolderViewType(currentMimeType) == VIEW_TYPE_GRID) {
currentViewType = VIEW_TYPE_GRID
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/DecompressItemsAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/DecompressItemsAdapter.kt
index 9c3c561c..abc7a9a9 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/DecompressItemsAdapter.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/DecompressItemsAdapter.kt
@@ -12,7 +12,6 @@ import com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions
import com.bumptech.glide.request.RequestOptions
import com.simplemobiletools.commons.adapters.MyRecyclerViewAdapter
import com.simplemobiletools.commons.extensions.getColoredDrawableWithColor
-import com.simplemobiletools.commons.extensions.getFileSignature
import com.simplemobiletools.commons.extensions.getTextSize
import com.simplemobiletools.commons.extensions.getTimeFormat
import com.simplemobiletools.commons.helpers.getFilePlaceholderDrawables
@@ -25,7 +24,7 @@ import kotlinx.android.synthetic.main.item_file_dir_list.view.*
import java.util.*
class DecompressItemsAdapter(activity: SimpleActivity, var listItems: MutableList, recyclerView: MyRecyclerView, itemClick: (Any) -> Unit) :
- MyRecyclerViewAdapter(activity, recyclerView, null, itemClick) {
+ MyRecyclerViewAdapter(activity, recyclerView, itemClick) {
private lateinit var fileDrawable: Drawable
private lateinit var folderDrawable: Drawable
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ItemsAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ItemsAdapter.kt
index 67f3bc68..b4b3d241 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ItemsAdapter.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ItemsAdapter.kt
@@ -24,13 +24,13 @@ import com.bumptech.glide.load.resource.bitmap.CenterCrop
import com.bumptech.glide.load.resource.bitmap.RoundedCorners
import com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions
import com.bumptech.glide.request.RequestOptions
+import com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller
import com.simplemobiletools.commons.adapters.MyRecyclerViewAdapter
import com.simplemobiletools.commons.dialogs.*
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.*
import com.simplemobiletools.commons.models.FileDirItem
import com.simplemobiletools.commons.models.RadioItem
-import com.simplemobiletools.commons.views.FastScroller
import com.simplemobiletools.commons.views.MyRecyclerView
import com.simplemobiletools.filemanager.pro.R
import com.simplemobiletools.filemanager.pro.activities.SimpleActivity
@@ -47,19 +47,19 @@ import kotlinx.android.synthetic.main.item_file_dir_list.view.item_frame
import kotlinx.android.synthetic.main.item_file_dir_list.view.item_icon
import kotlinx.android.synthetic.main.item_file_dir_list.view.item_name
import kotlinx.android.synthetic.main.item_section.view.*
+import java.io.BufferedInputStream
import java.io.Closeable
import java.io.File
-import java.io.FileInputStream
import java.util.*
import java.util.zip.ZipEntry
-import java.util.zip.ZipFile
+import java.util.zip.ZipInputStream
import java.util.zip.ZipOutputStream
class ItemsAdapter(
activity: SimpleActivity, var listItems: MutableList, val listener: ItemOperationsListener?, recyclerView: MyRecyclerView,
- val isPickMultipleIntent: Boolean, fastScroller: FastScroller?, val swipeRefreshLayout: SwipeRefreshLayout?, itemClick: (Any) -> Unit
+ val isPickMultipleIntent: Boolean, val swipeRefreshLayout: SwipeRefreshLayout?, itemClick: (Any) -> Unit
) :
- MyRecyclerViewAdapter(activity, recyclerView, fastScroller, itemClick) {
+ MyRecyclerViewAdapter(activity, recyclerView, itemClick), RecyclerViewFastScroller.OnPopupTextUpdate {
private val TYPE_FILE_DIR = 1
private val TYPE_SECTION = 2
@@ -326,16 +326,29 @@ class ItemsAdapter(
}
}
+ @SuppressLint("NewApi")
private fun addFileUris(path: String, paths: ArrayList) {
if (activity.getIsPathDirectory(path)) {
val shouldShowHidden = activity.config.shouldShowHidden
- if (activity.isPathOnOTG(path)) {
- activity.getDocumentFile(path)?.listFiles()?.filter { if (shouldShowHidden) true else !it.name!!.startsWith(".") }?.forEach {
- addFileUris(it.uri.toString(), paths)
+ when {
+ activity.isRestrictedSAFOnlyRoot(path) -> {
+ activity.getAndroidSAFFileItems(path, shouldShowHidden, false) { files ->
+ files.forEach {
+ addFileUris(activity.getAndroidSAFUri(it.path).toString(), paths)
+ }
+ }
}
- } else {
- File(path).listFiles()?.filter { if (shouldShowHidden) true else !it.name.startsWith('.') }?.forEach {
- addFileUris(it.absolutePath, paths)
+
+ activity.isPathOnOTG(path) -> {
+ activity.getDocumentFile(path)?.listFiles()?.filter { if (shouldShowHidden) true else !it.name!!.startsWith(".") }?.forEach {
+ addFileUris(it.uri.toString(), paths)
+ }
+ }
+
+ else -> {
+ File(path).listFiles()?.filter { if (shouldShowHidden) true else !it.name.startsWith('.') }?.forEach {
+ addFileUris(it.absolutePath, paths)
+ }
}
}
} else {
@@ -390,20 +403,30 @@ class ItemsAdapter(
activity.copyMoveFilesTo(files, source, it, isCopyOperation, false, activity.config.shouldShowHidden) {
if (!isCopyOperation) {
files.forEach { sourceFileDir ->
- val sourceFile = File(sourceFileDir.path)
- if (activity.getDoesFilePathExist(source) && activity.getIsPathDirectory(source) &&
- sourceFile.list()?.isEmpty() == true && sourceFile.getProperSize(true) == 0L && sourceFile.getFileCount(true) == 0
- ) {
- val sourceFolder = sourceFile.toFileDirItem(activity)
- activity.deleteFile(sourceFolder, true) {
+ val sourcePath = sourceFileDir.path
+ if (activity.isRestrictedSAFOnlyRoot(sourcePath) && activity.getDoesFilePathExist(sourcePath)) {
+ activity.deleteFile(sourceFileDir, true) {
listener?.refreshFragment()
activity.runOnUiThread {
finishActMode()
}
}
} else {
- listener?.refreshFragment()
- finishActMode()
+ val sourceFile = File(sourcePath)
+ if (activity.getDoesFilePathExist(source) && activity.getIsPathDirectory(source) &&
+ sourceFile.list()?.isEmpty() == true && sourceFile.getProperSize(true) == 0L && sourceFile.getFileCount(true) == 0
+ ) {
+ val sourceFolder = sourceFile.toFileDirItem(activity)
+ activity.deleteFile(sourceFolder, true) {
+ listener?.refreshFragment()
+ activity.runOnUiThread {
+ finishActMode()
+ }
+ }
+ } else {
+ listener?.refreshFragment()
+ finishActMode()
+ }
}
}
} else {
@@ -443,22 +466,27 @@ class ItemsAdapter(
CompressAsDialog(activity, firstPath) {
val destination = it
- activity.handleSAFDialog(firstPath) {
- if (!it) {
- return@handleSAFDialog
+ activity.handleAndroidSAFDialog(firstPath) { granted ->
+ if (!granted) {
+ return@handleAndroidSAFDialog
}
+ activity.handleSAFDialog(firstPath) {
+ if (!it) {
+ return@handleSAFDialog
+ }
- activity.toast(R.string.compressing)
- val paths = getSelectedFileDirItems().map { it.path }
- ensureBackgroundThread {
- if (compressPaths(paths, destination)) {
- activity.runOnUiThread {
- activity.toast(R.string.compression_successful)
- listener?.refreshFragment()
- finishActMode()
+ activity.toast(R.string.compressing)
+ val paths = getSelectedFileDirItems().map { it.path }
+ ensureBackgroundThread {
+ if (compressPaths(paths, destination)) {
+ activity.runOnUiThread {
+ activity.toast(R.string.compression_successful)
+ listener?.refreshFragment()
+ finishActMode()
+ }
+ } else {
+ activity.toast(R.string.compressing_failed)
}
- } else {
- activity.toast(R.string.compressing_failed)
}
}
}
@@ -478,103 +506,108 @@ class ItemsAdapter(
}
val paths = getSelectedFileDirItems().asSequence().map { it.path }.filter { it.isZipFile() }.toList()
- tryDecompressingPaths(paths) {
- if (it) {
- activity.toast(R.string.decompression_successful)
+ ensureBackgroundThread {
+ tryDecompressingPaths(paths) { success ->
activity.runOnUiThread {
- listener?.refreshFragment()
- finishActMode()
+ if (success) {
+ activity.toast(R.string.decompression_successful)
+ listener?.refreshFragment()
+ finishActMode()
+ } else {
+ activity.toast(R.string.decompressing_failed)
+ }
}
- } else {
- activity.toast(R.string.decompressing_failed)
}
}
}
}
private fun tryDecompressingPaths(sourcePaths: List, callback: (success: Boolean) -> Unit) {
- sourcePaths.forEach {
- try {
- val zipFile = ZipFile(it)
- val entries = zipFile.entries()
- val fileDirItems = ArrayList()
- while (entries.hasMoreElements()) {
- val entry = entries.nextElement()
- val currPath = if (entry.isDirectory) it else "${it.getParentPath().trimEnd('/')}/${entry.name}"
- val fileDirItem = FileDirItem(currPath, entry.name, entry.isDirectory, 0, entry.size)
- fileDirItems.add(fileDirItem)
- }
-
- val destinationPath = fileDirItems.first().getParentPath().trimEnd('/')
- activity.checkConflicts(fileDirItems, destinationPath, 0, LinkedHashMap()) {
- ensureBackgroundThread {
- decompressPaths(sourcePaths, it, callback)
+ sourcePaths.forEach { path ->
+ ZipInputStream(BufferedInputStream(activity.getFileInputStreamSync(path))).use { zipInputStream ->
+ try {
+ val fileDirItems = ArrayList()
+ var entry = zipInputStream.nextEntry
+ while (entry != null) {
+ val currPath = if (entry.isDirectory) path else "${path.getParentPath().trimEnd('/')}/${entry.name}"
+ val fileDirItem = FileDirItem(currPath, entry.name, entry.isDirectory, 0, entry.size)
+ fileDirItems.add(fileDirItem)
+ zipInputStream.closeEntry()
+ entry = zipInputStream.nextEntry
}
+ zipInputStream.closeEntry()
+ val destinationPath = fileDirItems.first().getParentPath().trimEnd('/')
+ activity.checkConflicts(fileDirItems, destinationPath, 0, LinkedHashMap()) {
+ ensureBackgroundThread {
+ decompressPaths(sourcePaths, it, callback)
+ }
+ }
+ } catch (exception: Exception) {
+ activity.showErrorToast(exception)
}
- } catch (exception: Exception) {
- activity.showErrorToast(exception)
}
}
}
private fun decompressPaths(paths: List, conflictResolutions: LinkedHashMap, callback: (success: Boolean) -> Unit) {
- paths.forEach {
- try {
- val zipFile = ZipFile(it)
- val entries = zipFile.entries()
- val zipFileName = it.getFilenameFromPath()
- val newFolderName = zipFileName.subSequence(0, zipFileName.length - 4)
- while (entries.hasMoreElements()) {
- val entry = entries.nextElement()
- val parentPath = it.getParentPath()
- val newPath = "$parentPath/$newFolderName/${entry.name.trimEnd('/')}"
+ paths.forEach { path ->
+ val zipInputStream = ZipInputStream(BufferedInputStream(activity.getFileInputStreamSync(path)))
+ zipInputStream.use {
+ try {
+ var entry = zipInputStream.nextEntry
+ val zipFileName = path.getFilenameFromPath()
+ val newFolderName = zipFileName.subSequence(0, zipFileName.length - 4)
+ while (entry != null) {
+ val parentPath = path.getParentPath()
+ val newPath = "$parentPath/$newFolderName/${entry.name.trimEnd('/')}"
- val resolution = getConflictResolution(conflictResolutions, newPath)
- val doesPathExist = activity.getDoesFilePathExist(newPath)
- if (doesPathExist && resolution == CONFLICT_OVERWRITE) {
- val fileDirItem = FileDirItem(newPath, newPath.getFilenameFromPath(), entry.isDirectory)
- if (activity.getIsPathDirectory(it)) {
- activity.deleteFolderBg(fileDirItem, false) {
- if (it) {
- extractEntry(newPath, entry, zipFile)
- } else {
- callback(false)
- }
- }
- } else {
- activity.deleteFileBg(fileDirItem, false) {
- if (it) {
- extractEntry(newPath, entry, zipFile)
- } else {
- callback(false)
+ val resolution = getConflictResolution(conflictResolutions, newPath)
+ val doesPathExist = activity.getDoesFilePathExist(newPath)
+ if (doesPathExist && resolution == CONFLICT_OVERWRITE) {
+ val fileDirItem = FileDirItem(newPath, newPath.getFilenameFromPath(), entry.isDirectory)
+ if (activity.getIsPathDirectory(path)) {
+ activity.deleteFolderBg(fileDirItem, false) {
+ if (it) {
+ extractEntry(newPath, entry, zipInputStream)
+ } else {
+ callback(false)
+ }
+ }
+ } else {
+ activity.deleteFileBg(fileDirItem, false) {
+ if (it) {
+ extractEntry(newPath, entry, zipInputStream)
+ } else {
+ callback(false)
+ }
}
}
+ } else if (!doesPathExist) {
+ extractEntry(newPath, entry, zipInputStream)
}
- } else if (!doesPathExist) {
- extractEntry(newPath, entry, zipFile)
+
+ zipInputStream.closeEntry()
+ entry = zipInputStream.nextEntry
}
+ callback(true)
+ } catch (e: Exception) {
+ activity.showErrorToast(e)
+ callback(false)
}
- callback(true)
- } catch (e: Exception) {
- activity.showErrorToast(e)
- callback(false)
}
}
}
- private fun extractEntry(newPath: String, entry: ZipEntry, zipFile: ZipFile) {
+ private fun extractEntry(newPath: String, entry: ZipEntry, zipInputStream: ZipInputStream) {
if (entry.isDirectory) {
if (!activity.createDirectorySync(newPath) && !activity.getDoesFilePathExist(newPath)) {
val error = String.format(activity.getString(R.string.could_not_create_file), newPath)
activity.showErrorToast(error)
}
} else {
- val ins = zipFile.getInputStream(entry)
- ins.use {
- val fos = activity.getFileOutputStreamSync(newPath, newPath.getMimeType())
- if (fos != null) {
- ins.copyTo(fos)
- }
+ val fos = activity.getFileOutputStreamSync(newPath, newPath.getMimeType())
+ if (fos != null) {
+ zipInputStream.copyTo(fos)
}
}
}
@@ -589,44 +622,64 @@ class ItemsAdapter(
}
}
+ @SuppressLint("NewApi")
private fun compressPaths(sourcePaths: List, targetPath: String): Boolean {
- val queue = LinkedList()
+ val queue = LinkedList()
val fos = activity.getFileOutputStreamSync(targetPath, "application/zip") ?: return false
val zout = ZipOutputStream(fos)
var res: Closeable = fos
try {
- sourcePaths.forEach {
+ sourcePaths.forEach { currentPath ->
var name: String
- var mainFile = File(it)
- val base = mainFile.parentFile.toURI()
+ var mainFilePath = currentPath
+ val base = "${mainFilePath.getParentPath()}/"
res = zout
- queue.push(mainFile)
- if (activity.getIsPathDirectory(mainFile.absolutePath)) {
- name = "${mainFile.name.trimEnd('/')}/"
+ queue.push(mainFilePath)
+ if (activity.getIsPathDirectory(mainFilePath)) {
+ name = "${mainFilePath.getFilenameFromPath()}/"
zout.putNextEntry(ZipEntry(name))
}
while (!queue.isEmpty()) {
- mainFile = queue.pop()
- if (activity.getIsPathDirectory(mainFile.absolutePath)) {
- for (file in mainFile.listFiles()) {
- name = base.relativize(file.toURI()).path
- if (activity.getIsPathDirectory(file.absolutePath)) {
- queue.push(file)
- name = "${name.trimEnd('/')}/"
- zout.putNextEntry(ZipEntry(name))
- } else {
- zout.putNextEntry(ZipEntry(name))
- FileInputStream(file).copyTo(zout)
- zout.closeEntry()
+ mainFilePath = queue.pop()
+ if (activity.getIsPathDirectory(mainFilePath)) {
+ if (activity.isRestrictedSAFOnlyRoot(mainFilePath)) {
+ activity.getAndroidSAFFileItems(mainFilePath, true) { files ->
+ for (file in files) {
+ name = file.path.relativizeWith(base)
+ if (activity.getIsPathDirectory(file.path)) {
+ queue.push(file.path)
+ name = "${name.trimEnd('/')}/"
+ zout.putNextEntry(ZipEntry(name))
+ } else {
+ zout.putNextEntry(ZipEntry(name))
+ activity.getFileInputStreamSync(file.path)!!.copyTo(zout)
+ zout.closeEntry()
+ }
+ }
+ }
+ } else {
+ val mainFile = File(mainFilePath)
+ for (file in mainFile.listFiles()) {
+ name = file.path.relativizeWith(base)
+ if (activity.getIsPathDirectory(file.absolutePath)) {
+ queue.push(file.absolutePath)
+ name = "${name.trimEnd('/')}/"
+ zout.putNextEntry(ZipEntry(name))
+ } else {
+ zout.putNextEntry(ZipEntry(name))
+ activity.getFileInputStreamSync(file.path)!!.copyTo(zout)
+ zout.closeEntry()
+ }
}
}
+
} else {
- name = if (base.path == it) it.getFilenameFromPath() else base.relativize(mainFile.toURI()).path
+ name = if (base == currentPath) currentPath.getFilenameFromPath() else mainFilePath.relativizeWith(base)
zout.putNextEntry(ZipEntry(name))
- FileInputStream(mainFile).copyTo(zout)
+ activity.getFileInputStreamSync(mainFilePath)!!.copyTo(zout)
zout.closeEntry()
}
}
@@ -708,7 +761,6 @@ class ItemsAdapter(
textToHighlight = highlightText
notifyDataSetChanged()
}
- fastScroller?.measureRecyclerView()
}
fun updateFontSizes() {
@@ -833,7 +885,9 @@ class ItemsAdapter(
path
}
- if (hasOTGConnected && itemToLoad is String && activity.isPathOnOTG(itemToLoad) && baseConfig.OTGTreeUri.isNotEmpty() && baseConfig.OTGPartition.isNotEmpty()) {
+ if (activity.isRestrictedSAFOnlyRoot(path)) {
+ itemToLoad = activity.getAndroidSAFUri(path)
+ } else if (hasOTGConnected && itemToLoad is String && activity.isPathOnOTG(itemToLoad) && baseConfig.OTGTreeUri.isNotEmpty() && baseConfig.OTGPartition.isNotEmpty()) {
itemToLoad = getOTGPublicPath(itemToLoad)
}
@@ -846,4 +900,6 @@ class ItemsAdapter(
fileDrawable = resources.getDrawable(R.drawable.ic_file_generic)
fileDrawables = getFilePlaceholderDrawables(activity)
}
+
+ override fun onChange(position: Int) = listItems.getOrNull(position)?.getBubbleText(activity, dateFormat, timeFormat) ?: ""
}
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ManageFavoritesAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ManageFavoritesAdapter.kt
index 43801fe3..3c281b5a 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ManageFavoritesAdapter.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/adapters/ManageFavoritesAdapter.kt
@@ -12,8 +12,10 @@ import com.simplemobiletools.filemanager.pro.extensions.config
import kotlinx.android.synthetic.main.item_manage_favorite.view.*
import java.util.*
-class ManageFavoritesAdapter(activity: BaseSimpleActivity, var favorites: ArrayList, val listener: RefreshRecyclerViewListener?,
- recyclerView: MyRecyclerView, itemClick: (Any) -> Unit) : MyRecyclerViewAdapter(activity, recyclerView, null, itemClick) {
+class ManageFavoritesAdapter(
+ activity: BaseSimpleActivity, var favorites: ArrayList, val listener: RefreshRecyclerViewListener?,
+ recyclerView: MyRecyclerView, itemClick: (Any) -> Unit
+) : MyRecyclerViewAdapter(activity, recyclerView, itemClick) {
private val config = activity.config
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/dialogs/CreateNewItemDialog.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/dialogs/CreateNewItemDialog.kt
index 2131dd0d..86fb1370 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/dialogs/CreateNewItemDialog.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/dialogs/CreateNewItemDialog.kt
@@ -3,6 +3,7 @@ package com.simplemobiletools.filemanager.pro.dialogs
import android.view.View
import androidx.appcompat.app.AlertDialog
import com.simplemobiletools.commons.extensions.*
+import com.simplemobiletools.commons.helpers.isRPlus
import com.simplemobiletools.filemanager.pro.R
import com.simplemobiletools.filemanager.pro.activities.SimpleActivity
import com.simplemobiletools.filemanager.pro.helpers.RootHelpers
@@ -15,41 +16,62 @@ class CreateNewItemDialog(val activity: SimpleActivity, val path: String, val ca
init {
AlertDialog.Builder(activity)
- .setPositiveButton(R.string.ok, null)
- .setNegativeButton(R.string.cancel, null)
- .create().apply {
- activity.setupDialogStuff(view, this, R.string.create_new) {
- showKeyboard(view.item_name)
- getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(View.OnClickListener {
- val name = view.item_name.value
- if (name.isEmpty()) {
- activity.toast(R.string.empty_name)
- } else if (name.isAValidFilename()) {
- val newPath = "$path/$name"
- if (activity.getDoesFilePathExist(newPath)) {
- activity.toast(R.string.name_taken)
- return@OnClickListener
- }
+ .setPositiveButton(R.string.ok, null)
+ .setNegativeButton(R.string.cancel, null)
+ .create().apply {
+ activity.setupDialogStuff(view, this, R.string.create_new) {
+ showKeyboard(view.item_name)
+ getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(View.OnClickListener {
+ val name = view.item_name.value
+ if (name.isEmpty()) {
+ activity.toast(R.string.empty_name)
+ } else if (name.isAValidFilename()) {
+ val newPath = "$path/$name"
+ if (activity.getDoesFilePathExist(newPath)) {
+ activity.toast(R.string.name_taken)
+ return@OnClickListener
+ }
- if (view.dialog_radio_group.checkedRadioButtonId == R.id.dialog_radio_directory) {
- createDirectory(newPath, this) {
- callback(it)
- }
- } else {
- createFile(newPath, this) {
- callback(it)
- }
+ if (view.dialog_radio_group.checkedRadioButtonId == R.id.dialog_radio_directory) {
+ createDirectory(newPath, this) {
+ callback(it)
}
} else {
- activity.toast(R.string.invalid_name)
+ createFile(newPath, this) {
+ callback(it)
+ }
}
- })
- }
+ } else {
+ activity.toast(R.string.invalid_name)
+ }
+ })
}
+ }
}
private fun createDirectory(path: String, alertDialog: AlertDialog, callback: (Boolean) -> Unit) {
when {
+ isRPlus() || path.startsWith(activity.internalStoragePath, true) -> {
+ if (activity.isRestrictedSAFOnlyRoot(path)) {
+ activity.handleAndroidSAFDialog(path) {
+ if (!it) {
+ callback(false)
+ return@handleAndroidSAFDialog
+ }
+ if (activity.createAndroidSAFDirectory(path)) {
+ success(alertDialog)
+ } else {
+ val error = String.format(activity.getString(R.string.could_not_create_folder), path)
+ activity.showErrorToast(error)
+ callback(false)
+ }
+ }
+ } else {
+ if (File(path).mkdirs()) {
+ success(alertDialog)
+ }
+ }
+ }
activity.needsStupidWritePermissions(path) -> activity.handleSAFDialog(path) {
if (!it) {
return@handleSAFDialog
@@ -65,11 +87,6 @@ class CreateNewItemDialog(val activity: SimpleActivity, val path: String, val ca
documentFile.createDirectory(path.getFilenameFromPath())
success(alertDialog)
}
- path.startsWith(activity.internalStoragePath, true) -> {
- if (File(path).mkdirs()) {
- success(alertDialog)
- }
- }
else -> {
RootHelpers(activity).createFileFolder(path, false) {
if (it) {
@@ -85,6 +102,22 @@ class CreateNewItemDialog(val activity: SimpleActivity, val path: String, val ca
private fun createFile(path: String, alertDialog: AlertDialog, callback: (Boolean) -> Unit) {
try {
when {
+ activity.isRestrictedSAFOnlyRoot(path) -> {
+ activity.handleAndroidSAFDialog(path) {
+ if (!it) {
+ callback(false)
+ return@handleAndroidSAFDialog
+ }
+ if (activity.createAndroidSAFFile(path)) {
+ success(alertDialog)
+ } else {
+ val error = String.format(activity.getString(R.string.could_not_create_file), path)
+ activity.showErrorToast(error)
+ callback(false)
+ }
+ }
+ }
+
activity.needsStupidWritePermissions(path) -> {
activity.handleSAFDialog(path) {
if (!it) {
@@ -102,7 +135,8 @@ class CreateNewItemDialog(val activity: SimpleActivity, val path: String, val ca
success(alertDialog)
}
}
- path.startsWith(activity.internalStoragePath, true) -> {
+
+ isRPlus() || path.startsWith(activity.internalStoragePath, true) -> {
if (File(path).createNewFile()) {
success(alertDialog)
}
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/ItemsFragment.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/ItemsFragment.kt
index 18287c09..9d1d1d3d 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/ItemsFragment.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/ItemsFragment.kt
@@ -1,5 +1,6 @@
package com.simplemobiletools.filemanager.pro.fragments
+import android.annotation.SuppressLint
import android.content.Context
import android.os.Parcelable
import android.util.AttributeSet
@@ -51,7 +52,6 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
override fun onResume(textColor: Int, primaryColor: Int) {
context!!.updateTextColors(this)
- items_fastscroller.updatePrimaryColor()
storedItems = ArrayList()
getRecyclerAdapter()?.apply {
updatePrimaryColor(primaryColor)
@@ -59,14 +59,19 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
initDrawables()
}
- breadcrumbs.updateColor(textColor)
- items_fastscroller.updateBubbleColors()
+ items_fastscroller.updateColors(primaryColor, primaryColor.getContrastColor())
+
+ if (currentPath != "") {
+ breadcrumbs.updateColor(textColor)
+ }
items_swipe_refresh.isEnabled = activity?.config?.enablePullToRefresh != false
}
override fun setupFontSize() {
getRecyclerAdapter()?.updateFontSizes()
- breadcrumbs.updateFontSize(context!!.getTextSize())
+ if (currentPath != "") {
+ breadcrumbs.updateFontSize(context!!.getTextSize())
+ }
}
override fun setupDateTimeFormat() {
@@ -121,10 +126,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
breadcrumbs.updateFontSize(context!!.getTextSize())
}
- ItemsAdapter(
- activity as SimpleActivity, storedItems, this, items_list, isPickMultipleIntent, items_fastscroller,
- items_swipe_refresh
- ) {
+ ItemsAdapter(activity as SimpleActivity, storedItems, this, items_list, isPickMultipleIntent, items_swipe_refresh) {
if ((it as? ListItem)?.isSectionTitle == true) {
openDirectory(it.mPath)
searchClosed()
@@ -140,18 +142,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
items_list.scheduleLayoutAnimation()
}
- val dateFormat = context!!.config.dateFormat
- val timeFormat = context!!.getTimeFormat()
- items_fastscroller.setViews(items_list, items_swipe_refresh) {
- val listItem = getRecyclerAdapter()?.listItems?.getOrNull(it)
- items_fastscroller.updateBubbleText(listItem?.getBubbleText(context, dateFormat, timeFormat) ?: "")
- }
-
getRecyclerLayoutManager().onRestoreInstanceState(scrollStates[currentPath])
- items_list.onGlobalLayout {
- items_fastscroller.setScrollToY(items_list.computeVerticalScrollOffset())
- calculateContentHeight(storedItems)
- }
}
}
@@ -159,12 +150,24 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
private fun getRecyclerLayoutManager() = (items_list.layoutManager as MyGridLayoutManager)
+ @SuppressLint("NewApi")
private fun getItems(path: String, callback: (originalPath: String, items: ArrayList) -> Unit) {
skipItemUpdating = false
ensureBackgroundThread {
if (activity?.isDestroyed == false && activity?.isFinishing == false) {
val config = context!!.config
- if (context!!.isPathOnOTG(path) && config.OTGTreeUri.isNotEmpty()) {
+ if (context.isRestrictedSAFOnlyRoot(path)) {
+ activity?.handleAndroidSAFDialog(path) {
+ if (!it) {
+ activity?.toast(R.string.no_storage_permissions)
+ return@handleAndroidSAFDialog
+ }
+ val getProperChildCount = context!!.config.getFolderViewType(currentPath) == VIEW_TYPE_LIST
+ context.getAndroidSAFFileItems(path, context.config.shouldShowHidden, getProperChildCount) { fileItems ->
+ callback(path, getListItemsFromFileDirItems(fileItems))
+ }
+ }
+ } else if (context!!.isPathOnOTG(path) && config.OTGTreeUri.isNotEmpty()) {
val getProperFileSize = context!!.config.getFolderSorting(currentPath) and SORT_BY_SIZE != 0
context!!.getOTGItems(path, config.shouldShowHidden, getProperFileSize) {
callback(path, getListItemsFromFileDirItems(it))
@@ -203,7 +206,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
if (getProperChildCount) {
items.filter { it.mIsDirectory }.forEach {
if (context != null) {
- val childrenCount = it.getDirectChildrenCount(context!!, showHidden)
+ val childrenCount = it.getDirectChildrenCount(activity as BaseSimpleActivity, showHidden)
if (childrenCount != 0) {
activity?.runOnUiThread {
getRecyclerAdapter()?.updateChildCount(it.mPath, childrenCount)
@@ -223,7 +226,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
var lastModified = lastModifieds.remove(curPath)
val isDirectory = if (lastModified != null) false else file.isDirectory
- val children = if (isDirectory && getProperChildCount) file.getDirectChildrenCount(showHidden) else 0
+ val children = if (isDirectory && getProperChildCount) file.getDirectChildrenCount(context, showHidden) else 0
val size = if (isDirectory) {
if (isSortingBySize) {
file.getProperSize(showHidden)
@@ -275,13 +278,13 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
when {
searchText.isEmpty() -> {
- items_list.beVisible()
+ items_fastscroller.beVisible()
getRecyclerAdapter()?.updateItems(storedItems)
items_placeholder.beGone()
items_placeholder_2.beGone()
}
searchText.length == 1 -> {
- items_list.beGone()
+ items_fastscroller.beGone()
items_placeholder.beVisible()
items_placeholder_2.beVisible()
}
@@ -318,14 +321,9 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
activity?.runOnUiThread {
getRecyclerAdapter()?.updateItems(listItems, text)
- items_list.beVisibleIf(listItems.isNotEmpty())
+ items_fastscroller.beVisibleIf(listItems.isNotEmpty())
items_placeholder.beVisibleIf(listItems.isEmpty())
items_placeholder_2.beGone()
-
- items_list.onGlobalLayout {
- items_fastscroller.setScrollToY(items_list.computeVerticalScrollOffset())
- calculateContentHeight(listItems)
- }
}
}
}
@@ -377,13 +375,13 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
isSearchOpen = false
if (!skipItemUpdating) {
getRecyclerAdapter()?.updateItems(storedItems)
- calculateContentHeight(storedItems)
}
+
skipItemUpdating = false
lastSearchedText = ""
items_swipe_refresh.isEnabled = activity?.config?.enablePullToRefresh != false
- items_list.beVisible()
+ items_fastscroller.beVisible()
items_placeholder.beGone()
items_placeholder_2.beGone()
}
@@ -458,14 +456,6 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
}
}
- private fun calculateContentHeight(items: MutableList) {
- val layoutManager = items_list.layoutManager as MyGridLayoutManager
- val thumbnailHeight = layoutManager.getChildAt(0)?.height ?: 0
- val fullHeight = ((items.size - 1) / layoutManager.spanCount + 1) * thumbnailHeight
- items_fastscroller.setContentHeight(fullHeight)
- items_fastscroller.setScrollToY(items_list.computeVerticalScrollOffset())
- }
-
override fun increaseColumnCount() {
if (currentViewType == VIEW_TYPE_GRID) {
context?.config?.fileColumnCnt = ++(items_list.layoutManager as MyGridLayoutManager).spanCount
@@ -484,7 +474,6 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
activity?.invalidateOptionsMenu()
getRecyclerAdapter()?.apply {
notifyItemRangeChanged(0, listItems.size)
- calculateContentHeight(listItems)
}
}
diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/RecentsFragment.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/RecentsFragment.kt
index 2d724f5e..1c11f054 100644
--- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/RecentsFragment.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/RecentsFragment.kt
@@ -1,14 +1,14 @@
package com.simplemobiletools.filemanager.pro.fragments
+import android.content.ContentResolver
import android.content.Context
import android.provider.MediaStore.Files
import android.provider.MediaStore.Files.FileColumns
import android.util.AttributeSet
+import androidx.core.os.bundleOf
import androidx.recyclerview.widget.GridLayoutManager
import com.simplemobiletools.commons.extensions.*
-import com.simplemobiletools.commons.helpers.VIEW_TYPE_GRID
-import com.simplemobiletools.commons.helpers.VIEW_TYPE_LIST
-import com.simplemobiletools.commons.helpers.ensureBackgroundThread
+import com.simplemobiletools.commons.helpers.*
import com.simplemobiletools.commons.models.FileDirItem
import com.simplemobiletools.commons.views.MyGridLayoutManager
import com.simplemobiletools.filemanager.pro.R
@@ -24,6 +24,8 @@ import kotlinx.android.synthetic.main.recents_fragment.view.*
import java.util.*
class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerFragment(context, attributeSet), ItemOperationsListener {
+ private val RECENTS_LIMIT = 50
+
override fun setupFragment(activity: SimpleActivity) {
if (this.activity == null) {
this.activity = activity
@@ -53,7 +55,7 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
return
}
- ItemsAdapter(activity as SimpleActivity, recents, this, recents_list, isPickMultipleIntent, null, recents_swipe_refresh) {
+ ItemsAdapter(activity as SimpleActivity, recents, this, recents_list, isPickMultipleIntent, recents_swipe_refresh) {
clickedPath((it as FileDirItem).path)
}.apply {
recents_list.adapter = this
@@ -122,17 +124,33 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
FileColumns.SIZE
)
- val sortOrder = "${FileColumns.DATE_MODIFIED} DESC LIMIT 50"
-
- context?.queryCursor(uri, projection, sortOrder = sortOrder, showErrors = true) { cursor ->
- val path = cursor.getStringValue(FileColumns.DATA)
- val name = cursor.getStringValue(FileColumns.DISPLAY_NAME) ?: path.getFilenameFromPath()
- val size = cursor.getLongValue(FileColumns.SIZE)
- val modified = cursor.getLongValue(FileColumns.DATE_MODIFIED) * 1000
- val fileDirItem = ListItem(path, name, false, 0, size, modified, false)
- if ((showHidden || !name.startsWith(".")) && activity?.getDoesFilePathExist(path) == true) {
- listItems.add(fileDirItem)
+ try {
+ if (isOreoPlus()) {
+ val queryArgs = bundleOf(
+ ContentResolver.QUERY_ARG_LIMIT to RECENTS_LIMIT,
+ ContentResolver.QUERY_ARG_SORT_COLUMNS to arrayOf(FileColumns.DATE_MODIFIED),
+ ContentResolver.QUERY_ARG_SORT_DIRECTION to ContentResolver.QUERY_SORT_DIRECTION_DESCENDING
+ )
+ context?.contentResolver?.query(uri, projection, queryArgs, null)
+ } else {
+ val sortOrder = "${FileColumns.DATE_MODIFIED} DESC LIMIT $RECENTS_LIMIT"
+ context?.contentResolver?.query(uri, projection, null, null, sortOrder)
+ }?.use { cursor ->
+ if (cursor.moveToFirst()) {
+ do {
+ val path = cursor.getStringValue(FileColumns.DATA)
+ val name = cursor.getStringValue(FileColumns.DISPLAY_NAME) ?: path.getFilenameFromPath()
+ val size = cursor.getLongValue(FileColumns.SIZE)
+ val modified = cursor.getLongValue(FileColumns.DATE_MODIFIED) * 1000
+ val fileDirItem = ListItem(path, name, false, 0, size, modified, false)
+ if ((showHidden || !name.startsWith(".")) && activity?.getDoesFilePathExist(path) == true) {
+ listItems.add(fileDirItem)
+ }
+ } while (cursor.moveToNext())
+ }
}
+ } catch (e: Exception) {
+ activity?.showErrorToast(e)
}
activity?.runOnUiThread {
diff --git a/app/src/main/res/drawable/ic_decompress_vector.xml b/app/src/main/res/drawable/ic_decompress_vector.xml
index dbc02d31..c4411729 100644
--- a/app/src/main/res/drawable/ic_decompress_vector.xml
+++ b/app/src/main/res/drawable/ic_decompress_vector.xml
@@ -1,9 +1,3 @@
-
-
+
+
diff --git a/app/src/main/res/drawable/ic_home_vector.xml b/app/src/main/res/drawable/ic_home_vector.xml
index df0f6832..d409807a 100644
--- a/app/src/main/res/drawable/ic_home_vector.xml
+++ b/app/src/main/res/drawable/ic_home_vector.xml
@@ -1,9 +1,3 @@
-
-
+
+
diff --git a/app/src/main/res/drawable/ic_storage_vector.xml b/app/src/main/res/drawable/ic_storage_vector.xml
index 80565aae..d620cacb 100644
--- a/app/src/main/res/drawable/ic_storage_vector.xml
+++ b/app/src/main/res/drawable/ic_storage_vector.xml
@@ -1,9 +1,3 @@
-
-
+
+
diff --git a/app/src/main/res/layout/activity_mimetypes.xml b/app/src/main/res/layout/activity_mimetypes.xml
index 3b377baf..b50e0a79 100644
--- a/app/src/main/res/layout/activity_mimetypes.xml
+++ b/app/src/main/res/layout/activity_mimetypes.xml
@@ -35,24 +35,20 @@
android:textStyle="italic"
android:visibility="gone" />
-
+ android:layout_height="wrap_content">
-
+
-
-
-
+
diff --git a/app/src/main/res/layout/items_fragment.xml b/app/src/main/res/layout/items_fragment.xml
index 19834892..9ef0a3cd 100644
--- a/app/src/main/res/layout/items_fragment.xml
+++ b/app/src/main/res/layout/items_fragment.xml
@@ -60,27 +60,22 @@
android:textStyle="italic"
android:visibility="gone" />
-
-
-
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@+id/breadcrumbs">
-
+
-
+
diff --git a/app/src/main/res/menu/cab.xml b/app/src/main/res/menu/cab.xml
index b179b77b..050c0845 100644
--- a/app/src/main/res/menu/cab.xml
+++ b/app/src/main/res/menu/cab.xml
@@ -13,12 +13,12 @@
app:showAsAction="always"/>
+ app:showAsAction="ifRoom" />
+ app:showAsAction="ifRoom" />
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index 69168260..a4a804ba 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -9,11 +9,11 @@
نسخ المسار الى الحافظة
تم نسخ المسار
الرجاء تحديد ملف صوتي
- Search folder
- This operation works only on rooted devices
- Recents
- Show recents
-
+ مجلد البحث
+ تعمل هذه العملية فقط على الأجهزة المتجذرة
+ الأحدث
+ إظهار الأحدث
+ Please grant our app access to all your files, it might not work well without it.
Open as
Text file
@@ -21,7 +21,6 @@
Audio file
Video file
Other file
-
ضغط
فك الضغط
@@ -32,74 +31,34 @@
نجح التفكيك
أخفق الضغط
أخفق إلغاء الضغط
-
إدارة المفضلة
الذهاب الى المفضلة
يمكنك إضافة المجلدات المستخدمة بشكل متكرر إلى المفضلة لسهولة الوصول إليها من أي مكان.
-
محرر الملفات
-
- Storage analysis
- Images
- Videos
+ تحليل التخزين
+ الصور
+ الفيديوات
Audio
Documents
Downloads
- Archives
- Others
+ الأرشيف
+ الاخرين
free
- Total storage: %s
-
+ إجمالي مساحة التخزين: %s
تفعيل الدخول الى مسار الروت
- Require pressing Back twice to leave the app
-
+ تتطلب الضغط على رجوع مرتين لمغادرة التطبيق
- Simple File Manager Pro - Manage files easy & fast
+ مدير الملفات البسيط برو -- إدارة الملفات سهلة وسريعة
- Easy app for managing your files without ads, respecting your privacy & security
-
- A lightweight quick file manager for everyday use. It offers a userful search functionality, you can also customize the home folder and select favorite folders for quick access.
-
- The app contains multiple powerful security related functions, like password protecting hidden items, deleting files, or the whole app. You can choose between using a pattern, pin, or a fingerprint to keep your data private.
-
- This modern file organizer supports fast browsing of root files, SD cards and USB devices.
-
- To keep your productive, it obviously has all the standard file operations like rename, copy, move, delete, share etc. It can also be used for saving up some storage, since it allows compressing and decompressing too. You can easily create new files or folders if you wish so.
-
- You can obviously select sorting by multiple different values, toggle between ascending and descending, or use a folder specific sorting.
-
- By just a few clicks you can also check file or folder properties, which shows various fields like the file size, date of the last modification, or EXIF values like the creation date, camera model at photos etc.
-
- To get a file or folders path quickly, you can easily select it by long pressing and copying it in the clipboard.
-
- You can create handy desktop shortcuts for accessing your favorite items quickly.
-
- It contains a light file editor that you can use either for printing documents, editing them, or read easily with using zoom gestures, whenever needed.
-
- It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps.
-
- Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
-
- Check out the full suite of Simple Tools here:
- https://www.simplemobiletools.com
-
- Standalone website of Simple File Manager Pro:
- https://www.simplemobiletools.com/filemanager
-
- Facebook:
- https://www.facebook.com/simplemobiletools
-
- Reddit:
- https://www.reddit.com/r/SimpleMobileTools
-
-
+ التطبيق السهل لإدارة الملفات الخاصة بك دون إعلانات، واحترام خصوصيتك والأمن
+ مدير ملفات سريع خفيف الوزن للاستخدام اليومي. وهو يوفر وظيفة بحث المستخدم، يمكنك أيضا تخصيص المجلد الرئيسي وتحديد المجلدات المفضلة للوصول السريع. يحتوي التطبيق على العديد من الوظائف الأمنية القوية ذات الصلة، مثل كلمة المرور لحماية العناصر المخفية، وحذف الملفات، أو التطبيق بأكمله. يمكنك الاختيار بين استخدام نمط أو دبوس أو بصمة إصبع للحفاظ على خصوصية بياناتك. يدعم منظم الملفات الحديث هذا التصفح السريع للملفات الجذرية وبطاقات SD وأجهزة USB. للحفاظ على الإنتاجية الخاصة بك، فمن الواضح أن لديها كل عمليات الملفات القياسية مثل إعادة تسمية، نسخ، نقل، حذف، مشاركة الخ. ويمكن أيضا أن تستخدم لتوفير بعض التخزين، لأنه يسمح ضغط وفك الضغط أيضا. يمكنك بسهولة إنشاء ملفات أو مجلدات جديدة إذا كنت ترغب في ذلك. من الواضح أنه يمكنك تحديد الفرز حسب قيم مختلفة متعددة أو التبديل بين تصاعدي و تنازلي أو استخدام فرز مجلد معين. من خلال عدد قليل من النقرات يمكنك أيضا التحقق من خصائص الملف أو المجلد ، والتي تظهر حقولا مختلفة مثل حجم الملف ، وتاريخ التعديل الأخير ، أو قيم EXIF مثل تاريخ الإنشاء ، طراز الكاميرا في الصور وما إلى ذلك. للحصول على مسار ملف أو مجلدات بسرعة، يمكنك تحديده بسهولة عن طريق الضغط عليه ونسخه لفترة طويلة في الحافظة. يمكنك إنشاء اختصارات سطح المكتب مفيد للوصول إلى العناصر المفضلة لديك بسرعة. وهو يحتوي على محرر ملفات خفيف يمكنك استخدامه إما لطباعة المستندات أو تحريرها أو قراءتها بسهولة باستخدام إيماءات التكبير/ التصغير، كلما دعت الحاجة. لأنه يأتي مع تصميم المواد وموضوع الظلام افتراضيا، ويوفر تجربة مستخدم كبيرة لسهولة الاستخدام. عدم الوصول إلى الإنترنت يمنحك المزيد من الخصوصية والأمان والاستقرار أكثر من التطبيقات الأخرى. لا يحتوي على إعلانات أو أذونات غير ضرورية. فمن مفتوحة المصدر تماما، ويوفر ألوان قابلة للتخصيص. تحقق من مجموعة كاملة من أدوات بسيطة هنا: https://www.simplemobiletools.com موقع مستقل من مدير الملفات البسيطة برو: https://www.simplemobiletools.com/filemanager Facebook: https://www.facebook.com/simplemobiletools Reddit: https://www.reddit.com/r/SimpleMobileTools
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
index e62163df..051dba80 100644
--- a/app/src/main/res/values-az/strings.xml
+++ b/app/src/main/res/values-az/strings.xml
@@ -13,6 +13,7 @@
Bu əməliyyat yalnız root\'lu cihazlarda işləyir
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 8b7c7677..1c67b4f5 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -13,6 +13,7 @@
Tato operace funguje pouze u rootnutých zařízení
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Otevřít jako
diff --git a/app/src/main/res/values-cy/strings.xml b/app/src/main/res/values-cy/strings.xml
index a8b96a55..86ff256e 100644
--- a/app/src/main/res/values-cy/strings.xml
+++ b/app/src/main/res/values-cy/strings.xml
@@ -13,6 +13,7 @@
Dyw\'r weithred hon ond yn gweithio ar ddyfeisiau wedi\'u gwreddio
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Agor fel
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index ba6f4c87..b30f7b57 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -13,6 +13,7 @@
Denne funkton virker kun på rootede enheder
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Åbn som
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 0ea975b8..a935fec0 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -8,12 +8,12 @@
Start-Verzeichnis aktualisiert
Kopiere Pfad in die Zwischenablage
Pfad kopiert
- Bitte wähle eine Audiodatei aus.
+ Bitte wähle eine Audiodatei aus
Ordner suchen
- Dies kann nur auf gerooteten Geräten durchgeführt werden.
+ Dies kann nur auf gerooteten Geräten durchgeführt werden
Neueste
Zeige die Neuesten
-
+ Please grant our app access to all your files, it might not work well without it.
Öffnen als
Text-Datei
@@ -21,47 +21,41 @@
Audio-Datei
Video-Datei
Anderer Dateityp
-
Komprimieren
Entpacken
Komprimieren als
Komprimiere…
Entpacke…
- Komprimieren erfolgreich.
- Entpacken erfolgreich.
- Komprimieren fehlgeschlagen.
- Entpacken fehlgeschlagen.
-
+ Komprimieren erfolgreich
+ Entpacken erfolgreich
+ Komprimieren fehlgeschlagen
+ Entpacken fehlgeschlagen
Verwalte Favoriten
Gehe zu Favoriten
- Du kannst häufig benutzte Ordner für einen einfacheren Zugriff zu den Favoriten hinzufügen
-
+ Du kannst häufig benutzte Ordner für einen einfacheren Zugriff zu den Favoriten hinzufügen.
Dateieditor
-
- Storage analysis
- Images
+ Speicheranalyse
+ Bilder
Videos
Audio
Documents
Downloads
- Archives
- Others
+ Archiv
+ Andere
free
- Total storage: %s
-
+ Gesamter Speicherplatz: %s
Root-Zugriff erlauben
- Require pressing Back twice to leave the app
-
+ Zweimaliges Drücken von Zurück ist erforderlich, um die Anwendung zu verlassen
- Simple File Manager Pro - Manage files easy & fast
+ Simple File Manager Pro - Dateien einfach und schnell verwalten
- Easy app for managing your files without ads, respecting your privacy & security
+ Einfache Anwendung zur Verwaltung Ihrer Dateien ohne Werbung, unter Wahrung Ihrer Privatsphäre und Sicherheit
Ein leichter, schneller Dateimanager für den täglichen Gebrauch. Es bietet eine nützliche Suchfunktion; zudem kannst du den Home-Ordner anpassen und Lieblingsordner für den schnellen Zugriff konfigurieren.
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index ee1ef195..f78bc953 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -13,6 +13,7 @@
Αυτό το χαρακτηριστικό λειτουργεί μόνο σε συσκευές με πρόσβαση στον ριζικό κατάλογο.
Πρόσφατα
Εμφάνιση προσφάτων
+ Παρακαλώ παραχωρήστε την πρόσβαση σε όλα τα αρχεία σας, γιατί χωρίς αυτή μπορεί να μην λειτουργεί καλά.
Άνοιγμα ως
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 14c0f1f8..5942a91a 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -13,6 +13,7 @@
Esta operación solo funciona en dispositivos rooteados
Recientes
Mostrar recientes
+ Please grant our app access to all your files, it might not work well without it.
Abrir como
@@ -50,7 +51,7 @@
Descargas
Archivos
Otros
- gratis
+ libre
Almacenamiento total: %s
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 93640037..874b599d 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -13,7 +13,7 @@
Tämä toiminto vaatii rootatun laitteen
Viimeaikaiset
Näytä viimeaikaiset
-
+ Please grant our app access to all your files, it might not work well without it.
Avaa...
Tekstitiedostona
@@ -21,7 +21,6 @@
Äänitiedostona
Videotiedostona
Jonakin muuna tiedostona
-
Pakkaa
Pura
@@ -32,34 +31,29 @@
Purkaminen valmis
Pakkaaminen epäonnistui
Purkaminen epäonnistui
-
Hallitse suosikkeja
Mene suosikkiin
Voit lisätä usein käyttämiäsi kansiota suosikeiksi, jolloin niiden käyttö on helppoa mistä vain.
-
Tiedostoeditori
-
- Storage analysis
- Images
- Videos
+ Tallennustilan analyysi
+ Kuvat
+ Videot
Audio
Documents
Downloads
- Archives
- Others
+ Arkistot
+ Muut
free
Total storage: %s
-
Ota käyttöön root-ominaisuudet
Ota käyttöön sovelluksesta poistuminen kahdella takaisin-painikkeen painalluksella
-
- Simple File Manager Pro - Manage files easy & fast
+ Simple File Manager Pro - Tehokas tiedostohallinta
Helppo tiedostonhallinta turvallisesti yksityisyyttä kunnioittaen, ei mainoksia.
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 8aa938f9..ce848235 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -11,9 +11,9 @@
Veuillez sélectionner un fichier audio
Chercher dans le dossier
Cette opération ne fonctionne que sur les périphériques rooté
- Recents
- Show recents
-
+ Récents
+ Afficher les récents
+ Please grant our app access to all your files, it might not work well without it.
Ouvert comme
Fichier texte
@@ -21,7 +21,6 @@
Fichier audio
Fichier vidéo
Autre fichier
-
Compresser
Décompresser
@@ -32,36 +31,31 @@
Décompression réussie
Compression ratée
Décompression ratée
-
Gérer les favoris
Aller au favori
Vous pouvez ajouter des dossiers souvent utilisés comme favoris pour y avoir accès rapidement depuis n\'importe où.
-
Éditeur de fichier
-
- Storage analysis
+ Analyse du stockage
Images
- Videos
+ Vidéos
Audio
Documents
- Downloads
+ Téléchargements
Archives
- Others
- free
- Total storage: %s
-
+ Autres
+ libre
+ Stockage total : %s
Activer les droits root
- Require pressing Back twice to leave the app
-
+ Obligation d\'appuyer deux fois sur la touche Retour pour quitter l\'application
- Simple File Manager Pro - Manage files easy & fast
+ Simple File Manager Pro – Gérer les fichiers facilement et rapidement
- Easy app for managing your files without ads, respecting your privacy & security
+ Une application simple pour gérer vos fichiers sans publicité, en respectant votre vie privée et votre sécurité
A lightweight quick file manager for everyday use. It offers a userful search functionality, you can also customize the home folder and select favorite folders for quick access.
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-gl b/app/src/main/res/values-gl/strings.xml
similarity index 85%
rename from app/src/main/res/values-gl
rename to app/src/main/res/values-gl/strings.xml
index c73bb29e..6e44b0fd 100644
--- a/app/src/main/res/values-gl
+++ b/app/src/main/res/values-gl/strings.xml
@@ -11,6 +11,9 @@
Seleccione un ficheiro de audio
Buscar cartafol
Esta operación só funciona en dispositivos con root
+ Recents
+ Show recents
+ Please grant our app access to all your files, it might not work well without it.
Abrir como
@@ -39,14 +42,27 @@
Editor de ficheiros
+
+ Storage analysis
+ Images
+ Videos
+ Audio
+ Documents
+ Downloads
+ Archives
+ Others
+ free
+ Total storage: %s
+
Activar acceso root
+ Require pressing Back twice to leave the app
- Simple File Manager Pro - Manage files easily & fast
+ Simple File Manager Pro - Manage files easily & fast
- Quick file management with no ads. Browse files easily, securely & fast
+ Quick file management with no ads. Browse files easily, securely & fast
Un xestor de ficheiros rápido e lixeiro para uso diario. Ofrece unha funcionalidade de busca útil e podes personalizar o cartafol de inicio e seleccionar os cartafoles favoritos para un acceso rápido.
@@ -65,11 +81,11 @@
Podes crear accesos directos nas pantallas para acceder rapidamente aos teus elementos favoritos.
Contén un editor de ficheiros lixeiro que pode empregar para imprimir documentos, editalos ou lelos facilmente usando xestos de zoom, sempre que sexa necesario.
-
+
E, por último, vén cun deseño material e un tema escuro de xeito predeterminado, fornece unha excelente experiencia de usuario cun uso sinxelo. Ao non requirir acceso a Internet, tes máis privacidade, seguridade e estabilidade
Non contén anuncios nin permisos innecesarios. Dispón dun tema escuro e é totalmente de código aberto.
-
+
Visita a páxina nesta ligazón:
https://www.simplemobiletools.com
diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml
index 3f35d2b2..78cda8c7 100644
--- a/app/src/main/res/values-hi/strings.xml
+++ b/app/src/main/res/values-hi/strings.xml
@@ -13,6 +13,7 @@
यह ऑपरेशन केवल रूटेड डिवाइस पर काम करता है
हाल के
हाल ही में दिखाएं
+ Please grant our app access to all your files, it might not work well without it.
इस रूप में खोलें
टेकस्ट फ़ाइलें
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index 4d2ba8df..e925648e 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -13,6 +13,7 @@
Ova radnja funkcionira samo na uređajima s root pristupom
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Otvori kao
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index e6a55178..95b44239 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -13,6 +13,7 @@
This operation works only on rooted devices
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/app/src/main/res/values-id/strings.xml b/app/src/main/res/values-id/strings.xml
index d66dd18f..2fa1b20e 100644
--- a/app/src/main/res/values-id/strings.xml
+++ b/app/src/main/res/values-id/strings.xml
@@ -13,6 +13,7 @@
Tindakan ini hanya bekerja pada perangkat dengan akses root
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Buka sebagai
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
deleted file mode 100644
index d66dd18f..00000000
--- a/app/src/main/res/values-in/strings.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
- Simple File Manager
- File Manager
- Tekan sekali lagi untuk keluar
- Buka folder beranda
- Setel sebagai folder beranda
- Folder beranda diperbarui
- Salin jalur ke papan klip
- Jalur disalin
- Silakan pilih berkas audio
- Cari folder
- Tindakan ini hanya bekerja pada perangkat dengan akses root
- Recents
- Show recents
-
-
- Buka sebagai
- Berkas teks
- Berkas gambar
- Berkas audio
- Berkas video
- Berkas lainnya
-
-
- Kompres
- Dekompres
- Kompres sebagai
- Mengompres…
- Dekompres…
- Berhasil mengompres
- Berhasil dekompresi
- Gagal mengompres
- Gagal dekompresi
-
-
- Kelola favorit
- Buka favorit
- Anda bisa menambahkan folder yang sering digunakan ke favorit untuk kemudahan akses dari mana saja.
-
-
- Penyunting Berkas
-
-
- Storage analysis
- Images
- Videos
- Audio
- Documents
- Downloads
- Archives
- Others
- free
- Total storage: %s
-
-
- Aktifkan akses root
- Require pressing Back twice to leave the app
-
-
-
- Simple File Manager Pro - Manage files easy & fast
-
- Easy app for managing your files without ads, respecting your privacy & security
-
- A lightweight quick file manager for everyday use. It offers a userful search functionality, you can also customize the home folder and select favorite folders for quick access.
-
- The app contains multiple powerful security related functions, like password protecting hidden items, deleting files, or the whole app. You can choose between using a pattern, pin, or a fingerprint to keep your data private.
-
- This modern file organizer supports fast browsing of root files, SD cards and USB devices.
-
- To keep your productive, it obviously has all the standard file operations like rename, copy, move, delete, share etc. It can also be used for saving up some storage, since it allows compressing and decompressing too. You can easily create new files or folders if you wish so.
-
- You can obviously select sorting by multiple different values, toggle between ascending and descending, or use a folder specific sorting.
-
- By just a few clicks you can also check file or folder properties, which shows various fields like the file size, date of the last modification, or EXIF values like the creation date, camera model at photos etc.
-
- To get a file or folders path quickly, you can easily select it by long pressing and copying it in the clipboard.
-
- You can create handy desktop shortcuts for accessing your favorite items quickly.
-
- It contains a light file editor that you can use either for printing documents, editing them, or read easily with using zoom gestures, whenever needed.
-
- It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps.
-
- Sama sekali tidak berisi iklan dan tidak membutuhkan perizinan yang tidak perlu. Sepenuhnya sumber terbuka, dengan warna yang bisa disesuaikan.
-
- Check out the full suite of Simple Tools here:
- https://www.simplemobiletools.com
-
- Standalone website of Simple File Manager Pro:
- https://www.simplemobiletools.com/filemanager
-
- Facebook:
- https://www.facebook.com/simplemobiletools
-
- Reddit:
- https://www.reddit.com/r/SimpleMobileTools
-
-
-
-
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 2cb54a09..63a233de 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -13,7 +13,7 @@
Questa operazione funziona solo nei dispositivi con permessi di root
Recenti
Mostra i recenti
-
+ Please grant our app access to all your files, it might not work well without it.
Apri come
File di testo
@@ -21,7 +21,6 @@
File audio
File video
Altro
-
Comprimi
Decomprimi
@@ -32,31 +31,26 @@
Decompressione completata
Impossibile comprimere
Impossibile decomprimere
-
Gestisci i preferiti
Vai al preferito
Si possono aggiungere le cartelle usate frequentemente ai preferiti, per un rapido accesso da qualsiasi posizione.
-
Editor dei file
-
- Storage analysis
- Images
- Videos
+ Analisi dello stoccaggio
+ Immagini
+ Video
Audio
- Documents
- Downloads
- Archives
- Others
- free
- Total storage: %s
-
+ Documenti
+ Scaricamenti
+ Archivi
+ Altri
+ libero
+ Memoria totale: %s
Abilita accesso root
Richiedi di premere Indietro due volte per uscire dall\'app
-
Semplice Gestore di file Pro - Facile e veloce
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 56fc6b74..fd1caa37 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -13,6 +13,7 @@
この操作はルート化された端末でのみ機能します
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
ファイル形式を指定して開く
diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml
index a7e5de56..a7053551 100644
--- a/app/src/main/res/values-ko-rKR/strings.xml
+++ b/app/src/main/res/values-ko-rKR/strings.xml
@@ -13,6 +13,7 @@
This operation works only on rooted devices
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index 159be3cd..462b2d31 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -13,6 +13,7 @@
This operation works only on rooted devices
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml
index 964dbbc8..1f6b7f47 100644
--- a/app/src/main/res/values-nb/strings.xml
+++ b/app/src/main/res/values-nb/strings.xml
@@ -13,6 +13,7 @@
Denne handlingen fungerer bare på rootede enheter.
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 9931b450..bcfe0cc6 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -13,6 +13,7 @@
Deze bewerking is alleen mogelijk op een geroot apparaat
Recent geopend
Recente items tonen
+ Please grant our app access to all your files, it might not work well without it.
Openen als
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 6c8818b3..d8cfe516 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -13,6 +13,7 @@
Ta operacja działa tylko na zrootowanych urządzeniach
Ostatnie
Pokaż ostatnie
+ Please grant our app access to all your files, it might not work well without it.
Otwórz jako
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index d2c97711..b49239aa 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -13,6 +13,7 @@
Esta operação só funciona em dispositivos rooteados
Recentes
Mostrar recentes
+ Please grant our app access to all your files, it might not work well without it.
Abrir como
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 8e92b414..95d59d8c 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -11,8 +11,9 @@
Selecione um ficheiro de áudio
Pesquisar pasta
Esta operação apenas funciona em dispositivos com root
- Recents
+ Recentes
Mostrar recentes
+ Please grant our app access to all your files, it might not work well without it.
Abrir como
@@ -23,15 +24,15 @@
Outro tipo
- Comprimir
- Descomprimir
- Comprimir como
- A comprimir…
- A descomprimir…
- Compressão terminada
- Descompressão terminada
- Falha ao comprimir
- Falha ao descomprimir
+ Compactar
+ Descompactar
+ Compactar como
+ A compactar…
+ A descompactar…
+ Compactação terminada
+ Descompactação terminada
+ Falha ao compactar
+ Falha ao descompactar
Gerir favoritos
@@ -42,20 +43,20 @@
Editor de ficheiros
- Storage analysis
- Images
- Videos
- Audio
- Documents
- Downloads
- Archives
- Others
- free
- Total storage: %s
+ Análise ao armazenamento
+ Imagens
+ Vídeos
+ Áudio
+ Documentos
+ Descargas
+ Arquivos
+ Outros
+ livre
+ Armazenamento total: %s
Ativar acesso root
- Require pressing Back twice to leave the app
+ Premir duas vezes a tecla Back para sair da aplicação
@@ -85,10 +86,10 @@
Não contém anúncios nem permissões desnecessárias. Disponibiliza um tema escuro e é totalmente \'open source\'.
- Consulte o conjunto completo das aplicações Simple Tools aqui:
+ Consulte o conjunto completo de aplicações Simple Tools aqui:
https://www.simplemobiletools.com
- Site específico da aplicação Simple File Manager Pro:
+ Site da aplicação Simple File Manager Pro:
https://www.simplemobiletools.com/filemanager
Facebook:
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index d11cf7c7..36f64221 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -13,7 +13,7 @@
Это работает только на устройствах с root-доступом
Recents
Show recents
-
+ Please grant our app access to all your files, it might not work well without it.
Открыть как
Текст
@@ -21,7 +21,6 @@
Аудио
Видео
Другое
-
Сжать
Распаковать
@@ -32,18 +31,15 @@
Распаковка успешна
Не удалось сжать
Не удалось распаковать
-
Настроить избранное
Открыть избранное
Вы можете добавить часто используемые папки в избранное для быстрого доступа к ним.
-
Редактор файлов
-
Storage analysis
- Images
+ Изображения
Videos
Audio
Documents
@@ -52,11 +48,9 @@
Others
free
Total storage: %s
-
Включить root-доступ
Require pressing Back twice to leave the app
-
Simple File Manager Pro - Manage files easy & fast
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index 1d24eb67..04d295f3 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -13,6 +13,7 @@
Táto operácia funguje iba na rootnutých zariadeniach
Nedávne
Zobraziť nedávne
+ Prosím povoľte našej apke prístup ku všetkým vašim súborom. Bez neho nebude fungovať správne.
Otvoriť ako
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index e5fa79ee..af14e7d8 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -13,6 +13,7 @@
Åtgärden fungerar bara på rotade enheter
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Öppna som
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 6e5f85e3..a5d54ba0 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -11,8 +11,9 @@
Lütfen bir ses dosyası seçin
Klasör ara
Bu işlem sadece rootlu cihazlarda çalışır
- Recents
- Show recents
+ Son dosyalar
+ Son dosyaları göster
+ Please grant our app access to all your files, it might not work well without it.
Farklı aç
@@ -42,20 +43,20 @@
Dosya Düzenleyici
- Storage analysis
- Images
- Videos
- Audio
- Documents
- Downloads
- Archives
- Others
- free
- Total storage: %s
+ Depolama analizi
+ Resimler
+ Videolar
+ Sesler
+ Belgeler
+ İndirilenler
+ Arşivler
+ Diğerleri
+ boş
+ Toplam depolama: %s
Root erişimini etkinleştir
- Require pressing Back twice to leave the app
+ Uygulamadan çıkmak için Geri tuşuna iki kez basmayı gerektir
@@ -65,7 +66,7 @@
Günlük kullanım için hafif ve hızlı bir dosya yöneticisi. Kullanıcı dostu bir arama işlevi sunar, ayrıca ana klasörü özelleştirebilir ve hızlı erişim için favori klasörleri seçebilirsiniz.
- Uygulama, gizli öğeleri parolayla koruma, dosyaları silme veya tüm uygulama gibi güvenlikle ilgili çok sayıda güçlü işlev içerir. Verilerinizi gizli tutmak için desen, pin veya parmak izi kullanmayı seçebilirsiniz.
+ Uygulama, gizli ögeleri parolayla koruma, dosyaları silme veya tüm uygulama gibi güvenlikle ilgili çok sayıda güçlü işlev içerir. Verilerinizi gizli tutmak için desen, pin veya parmak izi kullanmayı seçebilirsiniz.
Bu modern dosya düzenleyici, root dosyalarının, SD kartların ve USB cihazlarının hızlı taranmasını destekler.
@@ -77,11 +78,11 @@
Bir dosya veya klasör yolunu hızlı bir şekilde almak için, uzun basıp panoya kopyalayarak onu kolayca seçebilirsiniz.
- Favori öğelerinize hızlı bir şekilde erişmek için kullanışlı masaüstü kısayolları oluşturabilirsiniz.
+ Favori ögelerinize hızlı bir şekilde erişmek için kullanışlı masaüstü kısayolları oluşturabilirsiniz.
- Belgeleri yazdırmak, düzenlemek veya gerektiğinde yakınlaştırma hareketlerini kullanarak kolayca okumak için kullanabileceğiniz hafif bir dosya düzenleyici içerir.
+ Belgeleri yazdırmak, düzenlemek veya gerektiğinde yakınlaştırma hareketlerini kullanarak kolayca okumak için kullanabileceğiniz hafif bir dosya düzenleyici içerir.
- Varsayılan olarak materyal tasarım ve koyu tema ile birlikte gelir, kolay kullanım için harika bir kullanıcı deneyimi sağlar. İnternet erişiminin olmaması size diğer uygulamalardan daha fazla gizlilik, güvenlik ve istikrar sağlar.
+ Varsayılan olarak materyal tasarım ve koyu tema ile birlikte gelir, kolay kullanım için harika bir kullanıcı deneyimi sağlar. İnternet erişiminin olmaması size diğer uygulamalardan daha fazla gizlilik, güvenlik ve istikrar sağlar.
Reklam veya gereksiz izinler içermez. Tamamen açık kaynaktır, özelleştirilebilir renkler sunar.
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 0c4245c9..ed2bb413 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -13,6 +13,7 @@
Ця команда працює лише на пристроях з root-доступом
Останні
Показати останні
+ Please grant our app access to all your files, it might not work well without it.
Відкрити як файл
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index ffde2c32..e1a628b3 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -11,9 +11,9 @@
请选择一个音频文件
搜索文件夹
该选项仅在 root 后的设备上工作
- Recents
- Show recents
-
+ 最近
+ 显示最近
+ Please grant our app access to all your files, it might not work well without it.
打开为
文本文件
@@ -21,7 +21,6 @@
音频文件
视频文件
其他文件
-
压缩
解压缩
@@ -32,31 +31,26 @@
解压缩成功
压缩失败
解压缩失败
-
管理收藏
前往收藏
您可以将经常访问的文件夹添加至收藏便于从任意位置快速访问。
-
文件编辑器
-
- Storage analysis
- Images
- Videos
+ 存储分析
+ 图片
+ 视频
Audio
Documents
Downloads
- Archives
- Others
+ 存档
+ 其他
free
- Total storage: %s
-
+ 总存储: %s
启用 root 访问
- Require pressing Back twice to leave the app
-
+ 需要按两次返回键才能离开应用程序
简易文件管理 Pro - 轻松管理文件 & 快速体验
@@ -97,9 +91,8 @@
Reddit:
https://www.reddit.com/r/SimpleMobileTools
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 02c1b313..fbf8dfcf 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -13,6 +13,7 @@
這操作只對已root的裝置有用
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
開啟成
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index c7d2c25e..d02a1d87 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -13,6 +13,7 @@
This operation works only on rooted devices
Recents
Show recents
+ Please grant our app access to all your files, it might not work well without it.
Open as
diff --git a/build.gradle b/build.gradle
index 1d186814..87eca93f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
- ext.kotlin_version = '1.5.31'
+ ext.kotlin_version = '1.6.0'
repositories {
google()
@@ -9,7 +9,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.0.2'
+ classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong