mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-04-03 13:11:02 +02:00
fix #46, allow changing the font size
This commit is contained in:
parent
32f730940f
commit
6a49ff4cf7
@ -12,6 +12,7 @@ import android.graphics.drawable.Drawable
|
|||||||
import android.graphics.drawable.Icon
|
import android.graphics.drawable.Icon
|
||||||
import android.graphics.drawable.LayerDrawable
|
import android.graphics.drawable.LayerDrawable
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
|
import android.util.TypedValue
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
@ -61,11 +62,15 @@ class ItemsAdapter(activity: SimpleActivity, var listItems: MutableList<ListItem
|
|||||||
private var currentItemsHash = listItems.hashCode()
|
private var currentItemsHash = listItems.hashCode()
|
||||||
private var textToHighlight = ""
|
private var textToHighlight = ""
|
||||||
private val hasOTGConnected = activity.hasOTGConnected()
|
private val hasOTGConnected = activity.hasOTGConnected()
|
||||||
|
private var fontSize = 0f
|
||||||
|
private var smallerFontSize = 0f
|
||||||
|
|
||||||
var adjustedPrimaryColor = activity.getAdjustedPrimaryColor()
|
var adjustedPrimaryColor = activity.getAdjustedPrimaryColor()
|
||||||
|
|
||||||
init {
|
init {
|
||||||
setupDragListener(true)
|
setupDragListener(true)
|
||||||
initDrawables()
|
initDrawables()
|
||||||
|
updateFontSizes()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getActionMenuId() = R.menu.cab
|
override fun getActionMenuId() = R.menu.cab
|
||||||
@ -660,6 +665,12 @@ class ItemsAdapter(activity: SimpleActivity, var listItems: MutableList<ListItem
|
|||||||
fastScroller?.measureRecyclerView()
|
fastScroller?.measureRecyclerView()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun updateFontSizes() {
|
||||||
|
fontSize = activity.getTextSize()
|
||||||
|
smallerFontSize = fontSize * 0.8f
|
||||||
|
notifyDataSetChanged()
|
||||||
|
}
|
||||||
|
|
||||||
override fun onViewRecycled(holder: ViewHolder) {
|
override fun onViewRecycled(holder: ViewHolder) {
|
||||||
super.onViewRecycled(holder)
|
super.onViewRecycled(holder)
|
||||||
if (!activity.isDestroyed && !activity.isFinishing) {
|
if (!activity.isDestroyed && !activity.isFinishing) {
|
||||||
@ -676,13 +687,19 @@ class ItemsAdapter(activity: SimpleActivity, var listItems: MutableList<ListItem
|
|||||||
if (listItem.isSectionTitle) {
|
if (listItem.isSectionTitle) {
|
||||||
item_section.text = listItem.mName
|
item_section.text = listItem.mName
|
||||||
item_section.setTextColor(textColor)
|
item_section.setTextColor(textColor)
|
||||||
|
item_section.setTextSize(TypedValue.COMPLEX_UNIT_PX, fontSize)
|
||||||
} else {
|
} else {
|
||||||
item_frame.isSelected = isSelected
|
item_frame.isSelected = isSelected
|
||||||
val fileName = listItem.name
|
val fileName = listItem.name
|
||||||
item_name.text = if (textToHighlight.isEmpty()) fileName else fileName.highlightTextPart(textToHighlight, adjustedPrimaryColor)
|
item_name.text = if (textToHighlight.isEmpty()) fileName else fileName.highlightTextPart(textToHighlight, adjustedPrimaryColor)
|
||||||
item_name.setTextColor(textColor)
|
item_name.setTextColor(textColor)
|
||||||
|
item_name.setTextSize(TypedValue.COMPLEX_UNIT_PX, fontSize)
|
||||||
|
|
||||||
item_details.setTextColor(textColor)
|
item_details.setTextColor(textColor)
|
||||||
|
item_details.setTextSize(TypedValue.COMPLEX_UNIT_PX, smallerFontSize)
|
||||||
|
|
||||||
item_date.setTextColor(textColor)
|
item_date.setTextColor(textColor)
|
||||||
|
item_date.setTextSize(TypedValue.COMPLEX_UNIT_PX, smallerFontSize)
|
||||||
|
|
||||||
if (listItem.isDirectory) {
|
if (listItem.isDirectory) {
|
||||||
item_icon.setImageDrawable(folderDrawable)
|
item_icon.setImageDrawable(folderDrawable)
|
||||||
|
@ -46,6 +46,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
|
|||||||
|
|
||||||
private var storedItems = ArrayList<ListItem>()
|
private var storedItems = ArrayList<ListItem>()
|
||||||
private var storedTextColor = 0
|
private var storedTextColor = 0
|
||||||
|
private var storedFontSize = 0
|
||||||
|
|
||||||
lateinit var mView: View
|
lateinit var mView: View
|
||||||
|
|
||||||
@ -92,6 +93,12 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
|
|||||||
storedTextColor = newTextColor
|
storedTextColor = newTextColor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val configFontSize = context!!.config.fontSize
|
||||||
|
if (storedFontSize != configFontSize) {
|
||||||
|
getRecyclerAdapter()?.updateFontSizes()
|
||||||
|
storedFontSize = configFontSize
|
||||||
|
}
|
||||||
|
|
||||||
mView.items_fastscroller.updateBubbleColors()
|
mView.items_fastscroller.updateBubbleColors()
|
||||||
mView.items_fastscroller.allowBubbleDisplay = true
|
mView.items_fastscroller.allowBubbleDisplay = true
|
||||||
if (!isFirstResume) {
|
if (!isFirstResume) {
|
||||||
@ -109,6 +116,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
|
|||||||
private fun storeStateVariables() {
|
private fun storeStateVariables() {
|
||||||
context!!.config.apply {
|
context!!.config.apply {
|
||||||
storedTextColor = textColor
|
storedTextColor = textColor
|
||||||
|
storedFontSize = fontSize
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user