mirror of
https://github.com/kuba2k2/NavLib.git
synced 2025-04-03 07:14:28 +02:00
Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a5a1597e40 | ||
![]() |
60cc1171f9 | ||
![]() |
8f10321820 | ||
![]() |
30d86d9618 | ||
![]() |
556d568228 | ||
![]() |
8a0e0438a5 | ||
![]() |
578306480b | ||
![]() |
7430169359 | ||
![]() |
4f08f171d6 | ||
![]() |
15c95baa6a | ||
![]() |
43fc2f10df | ||
![]() |
642d297cd0 | ||
![]() |
28cdab3414 | ||
![]() |
43f5ecdef5 | ||
![]() |
1d0e98a90e | ||
![]() |
3873fa4b04 | ||
![]() |
fd757f4228 | ||
![]() |
5c8b13c0d9 | ||
![]() |
9002237a02 | ||
![]() |
9c8fb47c52 | ||
![]() |
8b31921697 | ||
![]() |
8ae5e2b87a | ||
![]() |
e4ad01dc87 | ||
![]() |
84d6447887 | ||
![]() |
01c787405e | ||
![]() |
8a707ebec7 | ||
![]() |
3ed34a4705 | ||
![]() |
345cf00311 | ||
![]() |
9e2e4f6057 | ||
![]() |
c26753fdc6 | ||
![]() |
2efa7f4947 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -11,4 +11,6 @@
|
||||
/build
|
||||
/captures
|
||||
.externalNativeBuild
|
||||
/_hakerskie
|
||||
/_hakerskie
|
||||
*.apk
|
||||
app/release/
|
4
.idea/gradle.xml
generated
4
.idea/gradle.xml
generated
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="PLATFORM" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="modules">
|
||||
@ -10,10 +12,10 @@
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/app" />
|
||||
<option value="$PROJECT_DIR$/navlib" />
|
||||
<option value="$PROJECT_DIR$/navlib-font" />
|
||||
</set>
|
||||
</option>
|
||||
<option name="resolveModulePerSourceSet" value="false" />
|
||||
<option name="testRunner" value="PLATFORM" />
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
|
30
.idea/jarRepositories.xml
generated
Normal file
30
.idea/jarRepositories.xml
generated
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RemoteRepositoriesConfiguration">
|
||||
<remote-repository>
|
||||
<option name="id" value="central" />
|
||||
<option name="name" value="Maven Central repository" />
|
||||
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="jboss.community" />
|
||||
<option name="name" value="JBoss Community repository" />
|
||||
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="BintrayJCenter" />
|
||||
<option name="name" value="BintrayJCenter" />
|
||||
<option name="url" value="https://jcenter.bintray.com/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="maven" />
|
||||
<option name="name" value="maven" />
|
||||
<option name="url" value="https://jitpack.io" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Google" />
|
||||
<option name="name" value="Google" />
|
||||
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
2
.idea/misc.xml
generated
2
.idea/misc.xml
generated
@ -5,7 +5,7 @@
|
||||
<configuration PROFILE_NAME="Debug" CONFIG_NAME="Debug" />
|
||||
</configurations>
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="JDK" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="false" project-jdk-name="JDK" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
|
1
.idea/runConfigurations.xml
generated
1
.idea/runConfigurations.xml
generated
@ -3,6 +3,7 @@
|
||||
<component name="RunConfigurationProducerService">
|
||||
<option name="ignoredProducers">
|
||||
<set>
|
||||
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
|
||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
|
||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
|
||||
|
@ -1,21 +1,22 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
apply plugin: 'kotlin-android-extensions'
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
compileSdkVersion setup.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
applicationId "pl.szczodrzynski.navigation"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 28
|
||||
versionCode 300
|
||||
versionName "0.3.0"
|
||||
minSdkVersion setup.minSdk
|
||||
targetSdkVersion setup.targetSdk
|
||||
versionCode release.versionCode
|
||||
versionName release.versionName
|
||||
|
||||
multiDexEnabled true
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
minifyEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
@ -32,16 +33,18 @@ android {
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation 'androidx.appcompat:appcompat:1.0.2'
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation "androidx.appcompat:appcompat:1.2.0"
|
||||
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
||||
implementation "com.mikepenz:materialdrawer:7.0.0-rc05"
|
||||
//implementation "com.mikepenz:crossfader:1.6.0" // do not update
|
||||
implementation "com.mikepenz:iconics-core:${iconics}" // do not update. >3.1.0 Breaks jelly bean
|
||||
implementation "com.mikepenz:iconics-views:${iconics}" // do not update
|
||||
implementation "com.mikepenz:community-material-typeface:3.5.95.1-kotlin@aar"
|
||||
implementation 'androidx.core:core-ktx:1.0.2'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||||
implementation "com.google.android.material:material:$material_version"
|
||||
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
|
||||
implementation "androidx.core:core-ktx:1.3.2"
|
||||
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
||||
implementation "com.google.android.material:material:1.3.0"
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
|
||||
implementation "com.mikepenz:iconics-views:5.3.0-b01"
|
||||
implementation "com.mikepenz:community-material-typeface:5.8.55.0-kotlin@aar"
|
||||
|
||||
// implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.15"
|
||||
implementation project(":navlib")
|
||||
}
|
||||
|
8
app/proguard-rules.pro
vendored
8
app/proguard-rules.pro
vendored
@ -19,3 +19,11 @@
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-keep class .R
|
||||
-keep class **.R$* {
|
||||
<fields>;
|
||||
}
|
||||
|
||||
-keep class android.support.v7.** { *; }
|
||||
-keep interface android.support.v7.** { *; }
|
@ -12,6 +12,7 @@
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:name="androidx.multidex.MultiDexApplication"
|
||||
android:theme="@style/AppTheme.Light"><!--
|
||||
android:windowSoftInputMode="adjustResize"-->
|
||||
<activity android:name=".MainActivity"
|
||||
@ -24,4 +25,4 @@
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
</manifest>
|
||||
|
@ -0,0 +1,91 @@
|
||||
package pl.szczodrzynski.navigation
|
||||
|
||||
import android.content.Context
|
||||
import android.graphics.PorterDuff
|
||||
import android.graphics.PorterDuffColorFilter
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.widget.ImageView
|
||||
import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory
|
||||
import pl.szczodrzynski.navlib.ImageHolder
|
||||
import pl.szczodrzynski.navlib.crc16
|
||||
import pl.szczodrzynski.navlib.drawer.IDrawerProfile
|
||||
import pl.szczodrzynski.navlib.getColorFromRes
|
||||
import pl.szczodrzynski.navlib.getDrawableFromRes
|
||||
|
||||
/*
|
||||
Example IDrawerProfile implementation
|
||||
*/
|
||||
class DrawerProfile(
|
||||
override val id: Int,
|
||||
override var name: String,
|
||||
override var subname: String?,
|
||||
override var image: String?
|
||||
) : IDrawerProfile {
|
||||
|
||||
private fun colorFromName(context: Context, name: String?): Int {
|
||||
var crc = crc16(name ?: "")
|
||||
crc = (crc and 0xff) or (crc shr 8)
|
||||
crc %= 16
|
||||
val color = when (crc) {
|
||||
13 -> R.color.md_red_500
|
||||
4 -> R.color.md_pink_A400
|
||||
2 -> R.color.md_purple_A400
|
||||
9 -> R.color.md_deep_purple_A700
|
||||
5 -> R.color.md_indigo_500
|
||||
1 -> R.color.md_indigo_A700
|
||||
6 -> R.color.md_cyan_A200
|
||||
14 -> R.color.md_teal_400
|
||||
15 -> R.color.md_green_500
|
||||
7 -> R.color.md_yellow_A700
|
||||
3 -> R.color.md_deep_orange_A400
|
||||
8 -> R.color.md_deep_orange_A700
|
||||
10 -> R.color.md_brown_500
|
||||
12 -> R.color.md_grey_400
|
||||
11 -> R.color.md_blue_grey_400
|
||||
else -> R.color.md_light_green_A700
|
||||
}
|
||||
return context.getColorFromRes(color)
|
||||
}
|
||||
|
||||
/* This method is not used in the drawer */
|
||||
/* return null if you do not want an image in the Toolbar */
|
||||
override fun getImageDrawable(context: Context): Drawable? {
|
||||
if (!image.isNullOrEmpty()) {
|
||||
try {
|
||||
if (image?.endsWith(".gif", true) == true) {
|
||||
/* if you want to use GIFs as profile drawables, add
|
||||
implementation "pl.droidsonroids.gif:android-gif-drawable:${versions.gifdrawable}"
|
||||
*/
|
||||
return null//GifDrawable(image ?: "")
|
||||
}
|
||||
else {
|
||||
return RoundedBitmapDrawableFactory.create(context.resources, image ?: "")
|
||||
//return Drawable.createFromPath(image ?: "") ?: throw Exception()
|
||||
}
|
||||
}
|
||||
catch (e: Exception) {
|
||||
e.printStackTrace()
|
||||
}
|
||||
}
|
||||
|
||||
return context.getDrawableFromRes(R.drawable.profile).also {
|
||||
it.colorFilter = PorterDuffColorFilter(colorFromName(context, name), PorterDuff.Mode.DST_OVER)
|
||||
}
|
||||
}
|
||||
|
||||
override fun getImageHolder(context: Context): ImageHolder {
|
||||
return if (!image.isNullOrEmpty()) {
|
||||
try {
|
||||
ImageHolder(image ?: "")
|
||||
} catch (_: Exception) {
|
||||
ImageHolder(R.drawable.profile, colorFromName(context, name))
|
||||
}
|
||||
}
|
||||
else {
|
||||
ImageHolder(R.drawable.profile, colorFromName(context, name))
|
||||
}
|
||||
}
|
||||
override fun applyImageTo(imageView: ImageView) {
|
||||
getImageHolder(imageView.context).applyTo(imageView)
|
||||
}
|
||||
}
|
@ -8,16 +8,15 @@ import android.view.Gravity
|
||||
import android.view.View
|
||||
import android.widget.Toast
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import com.mikepenz.iconics.IconicsColor
|
||||
import com.mikepenz.iconics.Iconics
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.IconicsSize
|
||||
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
||||
import com.mikepenz.materialdrawer.Drawer
|
||||
import com.mikepenz.iconics.utils.actionBar
|
||||
import com.mikepenz.iconics.utils.paddingDp
|
||||
import com.mikepenz.materialdrawer.holder.StringHolder
|
||||
import com.mikepenz.materialdrawer.model.PrimaryDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.ProfileDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.ProfileSettingDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.*
|
||||
import com.mikepenz.materialdrawer.model.utils.withIsHiddenInMiniDrawer
|
||||
import kotlinx.android.synthetic.main.sample_nav_view.*
|
||||
import pl.szczodrzynski.navlib.SystemBarsUtil
|
||||
import pl.szczodrzynski.navlib.SystemBarsUtil.Companion.COLOR_DO_NOT_CHANGE
|
||||
@ -29,9 +28,10 @@ import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet.Companion.SORT_MODE_DE
|
||||
import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet.Companion.TOGGLE_GROUP_SORTING_ORDER
|
||||
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetPrimaryItem
|
||||
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
|
||||
import pl.szczodrzynski.navlib.drawer.IDrawerProfile
|
||||
import pl.szczodrzynski.navlib.colorAttr
|
||||
import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem
|
||||
import pl.szczodrzynski.navlib.getColorFromAttr
|
||||
import pl.szczodrzynski.navlib.withIcon
|
||||
|
||||
|
||||
class MainActivity : AppCompatActivity() {
|
||||
@ -43,6 +43,8 @@ class MainActivity : AppCompatActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
|
||||
Iconics.respectFontBoundsDefault = true
|
||||
|
||||
if (darkTheme == null)
|
||||
darkTheme = getSharedPreferences("prefs", Context.MODE_PRIVATE).getBoolean("darkTheme", false)
|
||||
|
||||
@ -85,10 +87,6 @@ class MainActivity : AppCompatActivity() {
|
||||
recreate()
|
||||
}
|
||||
|
||||
commitButton.setOnClickListener {
|
||||
navView.systemBarsUtil?.commit()
|
||||
}
|
||||
|
||||
//navView.init(this)
|
||||
|
||||
// init the drawer before SystemBarsUtil
|
||||
@ -217,13 +215,22 @@ class MainActivity : AppCompatActivity() {
|
||||
navView.bottomSheet.enableDragToOpen = isChecked
|
||||
}
|
||||
|
||||
navView.bottomBar.fabIcon = CommunityMaterial.Icon2.cmd_pencil
|
||||
navView.bottomBar.fabIcon = CommunityMaterial.Icon3.cmd_pencil
|
||||
navView.bottomBar.fabExtendedText = "Compose"
|
||||
navView.bottomBar.fabExtended = false
|
||||
|
||||
rippleButton.setOnClickListener {
|
||||
navView.gainAttentionOnBottomBar()
|
||||
}
|
||||
|
||||
navView.toolbar.subtitleFormat = R.string.toolbar_subtitle
|
||||
navView.toolbar.subtitleFormatWithUnread = R.plurals.toolbar_subtitle_with_unread
|
||||
|
||||
navView.drawer.apply {
|
||||
|
||||
miniDrawerVisiblePortrait = true
|
||||
miniDrawerVisibleLandscape = null
|
||||
|
||||
addUnreadCounterType(type = 10, drawerItem = 1)
|
||||
addUnreadCounterType(type = 20, drawerItem = 2)
|
||||
addUnreadCounterType(type = 30, drawerItem = 60)
|
||||
@ -236,13 +243,13 @@ class MainActivity : AppCompatActivity() {
|
||||
.withSelected(true)
|
||||
.withIdentifier(1)
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withIcon(CommunityMaterial.Icon.cmd_google_home),
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_google_home),
|
||||
|
||||
DrawerPrimaryItem()
|
||||
.withIdentifier(2)
|
||||
.withName("Settings")
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_settings),
|
||||
.withIcon(CommunityMaterial.Icon.cmd_cog_outline),
|
||||
|
||||
DrawerPrimaryItem().withName("iOS")
|
||||
.withIdentifier(60)
|
||||
@ -256,9 +263,11 @@ class MainActivity : AppCompatActivity() {
|
||||
.withIcon(CommunityMaterial.Icon.cmd_alarm_bell),
|
||||
|
||||
DrawerPrimaryItem().withName("Lock screen")
|
||||
.withDescription("aaand not visible in Mini Drawer")
|
||||
.withIdentifier(62)
|
||||
.withIsHiddenInMiniDrawer(true)
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withIcon(CommunityMaterial.Icon.cmd_fingerprint),
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_fingerprint),
|
||||
|
||||
DrawerPrimaryItem().withName("HDR enable/disable")
|
||||
.withTag(0)
|
||||
@ -271,50 +280,50 @@ class MainActivity : AppCompatActivity() {
|
||||
.withDescription("Because we all hate ads")
|
||||
.withIdentifier(64)
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withIcon(CommunityMaterial.Icon.cmd_adchoices),
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_google_ads),
|
||||
|
||||
DrawerPrimaryItem().withName("Wonderful browsing experience and this is a long string")
|
||||
.withIdentifier(65)
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_internet_explorer)
|
||||
.withIcon(CommunityMaterial.Icon3.cmd_microsoft_internet_explorer)
|
||||
)
|
||||
|
||||
//setAccountHeaderBackground("/sdcard/ban.gif")
|
||||
|
||||
appendProfiles(
|
||||
DrawerProfile(1, "Think Pad", "think with a pad", null),
|
||||
DrawerProfile(2, "Phil Swift", "I sawed this boat in half!!!", null),
|
||||
DrawerProfile(3, "The meme bay", "Visit my amazing website", null),
|
||||
DrawerProfile(4, "Mark Zuckerberg", null, null),
|
||||
DrawerProfile(5, "I love GDPR", null, null),
|
||||
DrawerProfile(6, "Gandalf", "http://sax.hol.es/", null)
|
||||
)
|
||||
|
||||
setUnreadCount(2, 20, 30) // phil swift has 30 unreads on "Settings item"
|
||||
setUnreadCount(4, 40, 1000) // mark has 99+ unreads on "Lock screen item"
|
||||
|
||||
setAccountHeaderBackground("/sdcard/ban.gif")
|
||||
|
||||
appendProfiles(
|
||||
IDrawerProfile(1, "Think Pad", "think with a pad", "/sdcard/thinkpad.gif"),
|
||||
IDrawerProfile(2, "Phil Swift", "I sawed this boat in half!!!", "/sdcard/phil.jpg"),
|
||||
IDrawerProfile(3, "The meme bay", "Visit my amazing website", "/sdcard/loader.gif"),
|
||||
IDrawerProfile(4, "Mark Zuckerberg", "", null),
|
||||
IDrawerProfile(5, "I love GDPR", "spotify:user:popjustice:playlist:5Pe51v0sHLybSEkX0m0JRf", "/sdcard/tenor2.gif"),
|
||||
IDrawerProfile(6, "Gandalf", "http://sax.hol.es/", "/sdcard/facepalm.gif")
|
||||
)
|
||||
|
||||
addProfileSettings(
|
||||
ProfileSettingDrawerItem()
|
||||
.withName("Add Account")
|
||||
.withDescription("Add new GitHub Account")
|
||||
.withIcon(
|
||||
IconicsDrawable(context, CommunityMaterial.Icon2.cmd_plus)
|
||||
.actionBar()
|
||||
.padding(IconicsSize.dp(5))
|
||||
.color(IconicsColor.colorRes(pl.szczodrzynski.navlib.R.color.material_drawer_dark_primary_text))
|
||||
)
|
||||
.withOnDrawerItemClickListener(object : Drawer.OnDrawerItemClickListener {
|
||||
override fun onItemClick(view: View?, position: Int, drawerItem: IDrawerItem<*>): Boolean {
|
||||
Toast.makeText(context, "Add account", Toast.LENGTH_SHORT).show()
|
||||
return true
|
||||
IconicsDrawable(context, CommunityMaterial.Icon3.cmd_plus).apply {
|
||||
actionBar()
|
||||
paddingDp = 5
|
||||
colorAttr(context, R.attr.materialDrawerPrimaryText)
|
||||
}
|
||||
}),
|
||||
)
|
||||
.withOnDrawerItemClickListener { v, item, position ->
|
||||
Toast.makeText(context, "Add account", Toast.LENGTH_SHORT).show()
|
||||
true
|
||||
},
|
||||
ProfileSettingDrawerItem()
|
||||
.withName("Manage Account")
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_settings)
|
||||
.withIcon(CommunityMaterial.Icon.cmd_cog_outline)
|
||||
)
|
||||
|
||||
drawerItemSelectedListener = { id, position, drawerItem ->
|
||||
navView.gainAttentionOnBottomBar()
|
||||
if (id == 1 || id == 2) {
|
||||
getItemById(id) {
|
||||
if (it is DrawerPrimaryItem) {
|
||||
@ -330,6 +339,8 @@ class MainActivity : AppCompatActivity() {
|
||||
// drawer item ID)
|
||||
// See with "Settings" when it.badge AND UnreadCounter is present.
|
||||
//
|
||||
// and it of course does not update the badge
|
||||
//
|
||||
// just do not do this.
|
||||
it.badge = StringHolder("${it.tag as Int * 10}")
|
||||
}
|
||||
@ -348,12 +359,16 @@ class MainActivity : AppCompatActivity() {
|
||||
}
|
||||
}
|
||||
|
||||
setSelection.setOnClickListener {
|
||||
navView.drawer.setSelection(id = 1, fireOnClick = false)
|
||||
}
|
||||
|
||||
|
||||
navView.bottomSheet.apply {
|
||||
this += BottomSheetPrimaryItem(true)
|
||||
.withId(1)
|
||||
.withTitle("Compose")
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_pencil)
|
||||
.withIcon(CommunityMaterial.Icon3.cmd_pencil)
|
||||
.withOnClickListener(View.OnClickListener {
|
||||
Toast.makeText(this@MainActivity, "Compose message", Toast.LENGTH_SHORT).show()
|
||||
})
|
||||
@ -361,7 +376,7 @@ class MainActivity : AppCompatActivity() {
|
||||
this += BottomSheetPrimaryItem(false)
|
||||
.withId(3)
|
||||
.withTitle("Synchronise")
|
||||
.withIcon(CommunityMaterial.Icon2.cmd_sync)
|
||||
.withIcon(CommunityMaterial.Icon3.cmd_sync)
|
||||
.withOnClickListener(View.OnClickListener {
|
||||
Toast.makeText(this@MainActivity, "Synchronising...", Toast.LENGTH_SHORT).show()
|
||||
})
|
||||
@ -393,7 +408,7 @@ class MainActivity : AppCompatActivity() {
|
||||
textInputEnabled = true
|
||||
textInputHint = "Search"
|
||||
textInputHelperText = "0 messages found"
|
||||
textInputIcon = CommunityMaterial.Icon2.cmd_magnify
|
||||
textInputIcon = CommunityMaterial.Icon3.cmd_magnify
|
||||
textInputChangedListener = object : NavBottomSheet.OnTextInputChangedListener {
|
||||
override fun onTextChanged(s: String, start: Int, before: Int, count: Int) {
|
||||
navView.toolbar.subtitle = s
|
||||
|
@ -30,10 +30,16 @@
|
||||
android:layout_height="48dp"
|
||||
android:text="Switch theme" />
|
||||
<Button
|
||||
android:id="@+id/commitButton"
|
||||
android:id="@+id/rippleButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dp"
|
||||
android:text="Commit SystemBarsUtil" />
|
||||
android:text="Ripple bottombar" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/setSelection"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dp"
|
||||
android:text="Set selection" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
|
8
app/src/main/res/values-pl/plurals.xml
Normal file
8
app/src/main/res/values-pl/plurals.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<plurals name="toolbar_subtitle_with_unread">
|
||||
<item quantity="one">%1$s - %2$d nieprzeczytane</item>
|
||||
<item quantity="few">%1$s - %2$d nieprzeczytane</item>
|
||||
<item quantity="many">%1$s - %2$d nieprzeczytanych</item>
|
||||
</plurals>
|
||||
</resources>
|
6
app/src/main/res/values/plurals.xml
Normal file
6
app/src/main/res/values/plurals.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<plurals name="toolbar_subtitle_with_unread">
|
||||
<item quantity="other">%1$s - %2$d unread</item>
|
||||
</plurals>
|
||||
</resources>
|
37
build.gradle
37
build.gradle
@ -1,14 +1,28 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.3.41'
|
||||
ext.material_version = '1.1.0-alpha09'
|
||||
ext {
|
||||
kotlin_version = '1.4.31'
|
||||
|
||||
release = [
|
||||
// major.minor.patch.rc.beta
|
||||
versionName: "0.8.0",
|
||||
versionCode: 80099
|
||||
]
|
||||
|
||||
setup = [
|
||||
compileSdk: 30,
|
||||
minSdk : 16,
|
||||
targetSdk : 30
|
||||
]
|
||||
}
|
||||
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.5.0-rc03'
|
||||
classpath "com.android.tools.build:gradle:4.2.0-beta06"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
@ -24,23 +38,6 @@ allprojects {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
ext {
|
||||
compileSdkVersion = 28
|
||||
buildToolsVersion = '28.0.3'
|
||||
targetSdkVersion = compileSdkVersion
|
||||
minSdkVersion = 16
|
||||
|
||||
androidXAppCompat = '1.1.0-beta01'
|
||||
androidXRecyclerView = '1.1.0-alpha06'
|
||||
androidXCardView = '1.0.0'
|
||||
androidXGridLayout = '1.0.0'
|
||||
androidXConstraintLayout = '1.1.3'
|
||||
googleMaterial = '1.1.0-alpha09'
|
||||
|
||||
iconics = '4.0.1-b01'
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
|
||||
|
1
navlib-font/.gitignore
vendored
Normal file
1
navlib-font/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/build
|
44
navlib-font/build.gradle
Normal file
44
navlib-font/build.gradle
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2019 Mike Penz
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
compileSdkVersion setup.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion setup.minSdk
|
||||
targetSdkVersion setup.targetSdk
|
||||
consumerProguardFiles 'consumer-proguard-rules.pro'
|
||||
versionCode 10
|
||||
versionName "1.0"
|
||||
|
||||
resValue "string", "NavLibFont_version", "${versionName}"
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "com.mikepenz:iconics-typeface-api:5.3.0-b01"
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||
}
|
1
navlib-font/consumer-proguard-rules.pro
Normal file
1
navlib-font/consumer-proguard-rules.pro
Normal file
@ -0,0 +1 @@
|
||||
-keep class com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont { *; }
|
18
navlib-font/gradle.properties
Normal file
18
navlib-font/gradle.properties
Normal file
@ -0,0 +1,18 @@
|
||||
#
|
||||
# Copyright 2019 Mike Penz
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
POM_NAME=Android-Iconics NavLibFont Typeface Library
|
||||
POM_ARTIFACT_ID=navlibfont-typeface
|
||||
POM_PACKAGING=aar
|
18
navlib-font/src/main/AndroidManifest.xml
Normal file
18
navlib-font/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright 2019 Mike Penz
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<manifest package="com.mikepenz.iconics.typeface.library.navlibfont" />
|
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright 2019 Mike Penz
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.mikepenz.iconics.typeface.library.navlibfont
|
||||
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.iconics.typeface.ITypeface
|
||||
import java.util.LinkedList
|
||||
|
||||
@Suppress("EnumEntryName")
|
||||
object NavLibFont : ITypeface {
|
||||
|
||||
override val fontRes: Int
|
||||
get() = R.font.navlibfont_font_v1_0
|
||||
|
||||
override val characters: Map<String, Char> by lazy {
|
||||
Icon.values().associate { it.name to it.character }
|
||||
}
|
||||
|
||||
override val mappingPrefix: String
|
||||
get() = "nav"
|
||||
|
||||
override val fontName: String
|
||||
get() = "NavLibFont"
|
||||
|
||||
override val version: String
|
||||
get() = "1.0"
|
||||
|
||||
override val iconCount: Int
|
||||
get() = characters.size
|
||||
|
||||
override val icons: List<String>
|
||||
get() = characters.keys.toCollection(LinkedList())
|
||||
|
||||
override val author: String
|
||||
get() = "Kuba Szczodrzyński"
|
||||
|
||||
override val url: String
|
||||
get() = "https://github.com/kuba2k2/NavLib"
|
||||
|
||||
override val description: String
|
||||
get() = ""
|
||||
|
||||
override val license: String
|
||||
get() = ""
|
||||
|
||||
override val licenseUrl: String
|
||||
get() = ""
|
||||
|
||||
override fun getIcon(key: String): IIcon = Icon.valueOf(key)
|
||||
|
||||
enum class Icon constructor(override val character: Char) : IIcon {
|
||||
nav_dots_vertical('\ue801'),
|
||||
nav_menu('\ue800'),
|
||||
nav_sort_ascending('\ue803'),
|
||||
nav_sort_descending('\ue802');
|
||||
|
||||
override val typeface: ITypeface by lazy { NavLibFont }
|
||||
}
|
||||
}
|
BIN
navlib-font/src/main/res/font/navlibfont_font_v1_0.ttf
Normal file
BIN
navlib-font/src/main/res/font/navlibfont_font_v1_0.ttf
Normal file
Binary file not shown.
20
navlib-font/src/main/res/values/font_addon.xml
Normal file
20
navlib-font/src/main/res/values/font_addon.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (c) 2019 Mike Penz
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string name="define_font_NavLibFont">com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont</string>
|
||||
</resources>
|
31
navlib-font/src/main/res/values/font_description.xml
Normal file
31
navlib-font/src/main/res/values/font_description.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (c) 2019 Mike Penz
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string name="define_FontAwesome">year;author;libraryName;libraryWebsite</string>
|
||||
<string name="library_FontAwesome_author">Kuba Szczodrzyński</string>
|
||||
<string name="library_FontAwesome_authorWebsite">https://github.com/kuba2k2/NavLib</string>
|
||||
<string name="library_FontAwesome_libraryName">NavLibFont</string>
|
||||
<string name="library_FontAwesome_libraryDescription"></string>
|
||||
<string name="library_FontAwesome_libraryWebsite">https://github.com/kuba2k2/NavLib</string>
|
||||
<string name="library_FontAwesome_libraryVersion">@string/NavLibFont_version</string>
|
||||
<string name="library_FontAwesome_licenseId"></string>
|
||||
<string name="library_FontAwesome_isOpenSource">true</string>
|
||||
<string name="library_FontAwesome_repositoryLink">https://github.com/kuba2k2/NavLib</string>
|
||||
<!-- Custom variables section -->
|
||||
<string name="library_FontAwesome_year">2018</string>
|
||||
</resources>
|
@ -2,15 +2,15 @@ apply plugin: 'com.android.library'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlin-kapt'
|
||||
apply plugin: 'kotlin-android-extensions'
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
|
||||
android {
|
||||
compileSdkVersion setup.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 28
|
||||
versionCode 300
|
||||
versionName "0.3.0"
|
||||
minSdkVersion setup.minSdk
|
||||
targetSdkVersion setup.targetSdk
|
||||
versionCode release.versionCode
|
||||
versionName release.versionName
|
||||
|
||||
consumerProguardFiles 'consumer-rules.pro'
|
||||
|
||||
@ -24,8 +24,8 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
dataBinding {
|
||||
enabled = true
|
||||
buildFeatures {
|
||||
dataBinding = true
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
@ -35,21 +35,21 @@ android {
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation 'androidx.appcompat:appcompat:1.0.2'
|
||||
implementation 'androidx.core:core-ktx:1.0.2'
|
||||
implementation 'com.google.android.material:material:1.1.0-alpha09'
|
||||
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
||||
|
||||
implementation "com.mikepenz:materialdrawer:7.0.0-rc05"
|
||||
implementation "com.mikepenz:iconics-core:4.0.1-b01"
|
||||
implementation 'com.mikepenz:community-material-typeface:3.5.95.1-kotlin@aar'
|
||||
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.15'
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||
implementation "androidx.appcompat:appcompat:1.2.0"
|
||||
implementation "androidx.core:core-ktx:1.3.2"
|
||||
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
||||
implementation "com.google.android.material:material:1.3.0"
|
||||
|
||||
implementation "androidx.appcompat:appcompat:${androidXAppCompat}"
|
||||
implementation "androidx.recyclerview:recyclerview:${androidXRecyclerView}"
|
||||
implementation "androidx.annotation:annotation:1.1.0"
|
||||
implementation "com.google.android.material:material:${googleMaterial}"
|
||||
implementation "androidx.constraintlayout:constraintlayout:${androidXConstraintLayout}"
|
||||
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
||||
api "com.mikepenz:materialize:1.2.1"
|
||||
api "com.mikepenz:materialdrawer:8.3.3"
|
||||
api "com.mikepenz:iconics-core:5.3.0-b01"
|
||||
api "com.mikepenz:itemanimators:1.1.0"
|
||||
|
||||
compileOnly "pl.droidsonroids.gif:android-gif-drawable:1.2.15"
|
||||
|
||||
implementation "com.balysv:material-ripple:1.0.2"
|
||||
|
||||
implementation project(":navlib-font")
|
||||
}
|
||||
|
@ -0,0 +1 @@
|
||||
-keep class androidx.drawerlayout.widget.DrawerLayout { *; }
|
2
navlib/proguard-rules.pro
vendored
2
navlib/proguard-rules.pro
vendored
@ -19,3 +19,5 @@
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-keep class androidx.drawerlayout.widget.DrawerLayout { *; }
|
||||
|
109
navlib/src/main/java/pl/szczodrzynski/navlib/BadgeDrawable.java
Normal file
109
navlib/src/main/java/pl/szczodrzynski/navlib/BadgeDrawable.java
Normal file
@ -0,0 +1,109 @@
|
||||
package pl.szczodrzynski.navlib;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Color;
|
||||
import android.graphics.ColorFilter;
|
||||
import android.graphics.Paint;
|
||||
import android.graphics.PixelFormat;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.Typeface;
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
import androidx.core.content.ContextCompat;
|
||||
|
||||
public class BadgeDrawable extends Drawable {
|
||||
|
||||
private Paint mBadgePaint;
|
||||
private Paint mBadgePaint1;
|
||||
private Paint mTextPaint;
|
||||
private Rect mTxtRect = new Rect();
|
||||
|
||||
private String mCount = "";
|
||||
private boolean mWillDraw = false;
|
||||
|
||||
public BadgeDrawable(Context context) {
|
||||
float mTextSize = context.getResources().getDimension(R.dimen.badge_text_size);
|
||||
|
||||
mBadgePaint = new Paint();
|
||||
mBadgePaint.setColor(0xffff3d00);
|
||||
mBadgePaint.setAntiAlias(true);
|
||||
mBadgePaint.setStyle(Paint.Style.FILL);
|
||||
/*mBadgePaint1 = new Paint();
|
||||
mBadgePaint1.setColor(ContextCompat.getColor(context.getApplicationContext(), R.color.grey_ivory5));
|
||||
mBadgePaint1.setAntiAlias(true);
|
||||
mBadgePaint1.setStyle(Paint.Style.FILL);*/
|
||||
|
||||
mTextPaint = new Paint();
|
||||
mTextPaint.setColor(Color.WHITE);
|
||||
mTextPaint.setTypeface(Typeface.DEFAULT);
|
||||
mTextPaint.setTextSize(mTextSize);
|
||||
mTextPaint.setAntiAlias(true);
|
||||
mTextPaint.setTextAlign(Paint.Align.CENTER);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void draw(Canvas canvas) {
|
||||
|
||||
|
||||
|
||||
if (!mWillDraw) {
|
||||
return;
|
||||
}
|
||||
Rect bounds = getBounds();
|
||||
float width = bounds.right - bounds.left;
|
||||
float height = bounds.bottom - bounds.top;
|
||||
|
||||
// Position the badge in the top-right quadrant of the icon.
|
||||
|
||||
/*Using Math.max rather than Math.min */
|
||||
|
||||
float radius = ((Math.max(width, height) / 2)) / 2;
|
||||
float centerX = (width - radius - 1) +5;
|
||||
float centerY = radius -5;
|
||||
if(mCount.length() <= 2){
|
||||
// Draw badge circle.
|
||||
//canvas.drawCircle(centerX, centerY, (int)(radius+7.5), mBadgePaint1);
|
||||
canvas.drawCircle(centerX, centerY, (int)(radius+5.5), mBadgePaint);
|
||||
}
|
||||
else{
|
||||
//canvas.drawCircle(centerX, centerY, (int)(radius+8.5), mBadgePaint1);
|
||||
canvas.drawCircle(centerX, centerY, (int)(radius+6.5), mBadgePaint);
|
||||
// canvas.drawRoundRect(radius, radius, radius, radius, 10, 10, mBadgePaint);
|
||||
}
|
||||
// Draw badge count text inside the circle.
|
||||
mTextPaint.getTextBounds(mCount, 0, mCount.length(), mTxtRect);
|
||||
float textHeight = mTxtRect.bottom - mTxtRect.top;
|
||||
float textY = centerY + (textHeight / 2f);
|
||||
if(mCount.length() > 2)
|
||||
canvas.drawText("99+", centerX, textY, mTextPaint);
|
||||
else
|
||||
canvas.drawText(mCount, centerX, textY, mTextPaint);
|
||||
}
|
||||
|
||||
/*
|
||||
Sets the count (i.e notifications) to display.
|
||||
*/
|
||||
public void setCount(String count) {
|
||||
mCount = count;
|
||||
|
||||
// Only draw a badge if there are notifications.
|
||||
mWillDraw = !count.equalsIgnoreCase("0");
|
||||
invalidateSelf();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAlpha(int alpha) {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setColorFilter(ColorFilter cf) {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getOpacity() {
|
||||
return PixelFormat.UNKNOWN;
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@ import android.util.AttributeSet
|
||||
import android.view.MotionEvent
|
||||
import android.view.View
|
||||
import android.view.ViewOutlineProvider
|
||||
import androidx.appcompat.widget.AppCompatImageView
|
||||
import androidx.core.view.ViewCompat
|
||||
import com.mikepenz.materialdrawer.R
|
||||
import com.mikepenz.materialdrawer.util.DrawerImageLoader
|
||||
@ -22,7 +21,7 @@ import pl.droidsonroids.gif.GifImageView
|
||||
* drawable on top. This is useful for applying a beveled look to image contents, but is also
|
||||
* flexible enough for use with other desired aesthetics.
|
||||
*/
|
||||
open class BezelGifImageView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyle: Int = 0) : GifImageView(context, attrs, defStyle) {
|
||||
open class BezelImageView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyle: Int = 0) : GifImageView(context, attrs, defStyle) {
|
||||
private val mBlackPaint: Paint
|
||||
private val mMaskedPaint: Paint
|
||||
|
||||
@ -54,14 +53,14 @@ open class BezelGifImageView @JvmOverloads constructor(context: Context, attrs:
|
||||
// Attribute initialization
|
||||
val a = context.obtainStyledAttributes(attrs, R.styleable.BezelImageView, defStyle, R.style.BezelImageView)
|
||||
|
||||
mMaskDrawable = a.getDrawable(R.styleable.BezelImageView_biv_maskDrawable)
|
||||
mMaskDrawable = a.getDrawable(R.styleable.BezelImageView_materialDrawerMaskDrawable)
|
||||
if (mMaskDrawable != null) {
|
||||
mMaskDrawable.callback = this
|
||||
}
|
||||
|
||||
mDrawCircularShadow = a.getBoolean(R.styleable.BezelImageView_biv_drawCircularShadow, true)
|
||||
mDrawCircularShadow = a.getBoolean(R.styleable.BezelImageView_materialDrawerDrawCircularShadow, true)
|
||||
|
||||
mSelectorColor = a.getColor(R.styleable.BezelImageView_biv_selectorOnPress, 0)
|
||||
mSelectorColor = a.getColor(R.styleable.BezelImageView_materialDrawerSelectorOnPress, 0)
|
||||
|
||||
a.recycle()
|
||||
|
||||
|
@ -1,11 +1,18 @@
|
||||
package pl.szczodrzynski.navlib
|
||||
|
||||
import android.view.View
|
||||
import androidx.recyclerview.widget.RecyclerView
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.materialdrawer.*
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IProfile
|
||||
import com.mikepenz.materialdrawer.holder.StringHolder
|
||||
import com.mikepenz.materialdrawer.model.AbstractDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.BaseDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.*
|
||||
import com.mikepenz.materialdrawer.util.getDrawerItem
|
||||
import com.mikepenz.materialdrawer.util.updateItem
|
||||
import com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView
|
||||
|
||||
fun DrawerBuilder.withOnDrawerItemClickListener(listener: (view: View?, position: Int, drawerItem: IDrawerItem<*>) -> Boolean): DrawerBuilder {
|
||||
/*inline fun DrawerBuilder.withOnDrawerItemClickListener(crossinline listener: (view: View?, position: Int, drawerItem: IDrawerItem<*>) -> Boolean): DrawerBuilder {
|
||||
return this.withOnDrawerItemClickListener(object : Drawer.OnDrawerItemClickListener {
|
||||
override fun onItemClick(view: View?, position: Int, drawerItem: IDrawerItem<*>): Boolean {
|
||||
return listener(view, position, drawerItem)
|
||||
@ -13,7 +20,7 @@ fun DrawerBuilder.withOnDrawerItemClickListener(listener: (view: View?, position
|
||||
})
|
||||
}
|
||||
|
||||
fun DrawerBuilder.withOnDrawerItemLongClickListener(listener: (view: View, position: Int, drawerItem: IDrawerItem<*>) -> Boolean): DrawerBuilder {
|
||||
inline fun DrawerBuilder.withOnDrawerItemLongClickListener(crossinline listener: (view: View, position: Int, drawerItem: IDrawerItem<*>) -> Boolean): DrawerBuilder {
|
||||
return this.withOnDrawerItemLongClickListener(object : Drawer.OnDrawerItemLongClickListener {
|
||||
override fun onItemLongClick(view: View, position: Int, drawerItem: IDrawerItem<*>): Boolean {
|
||||
return listener(view, position, drawerItem)
|
||||
@ -21,7 +28,7 @@ fun DrawerBuilder.withOnDrawerItemLongClickListener(listener: (view: View, posit
|
||||
})
|
||||
}
|
||||
|
||||
fun AccountHeaderBuilder.withOnAccountHeaderListener(listener: (view: View?, profile: IProfile<*>, current: Boolean) -> Boolean): AccountHeaderBuilder {
|
||||
inline fun AccountHeaderBuilder.withOnAccountHeaderListener(crossinline listener: (view: View?, profile: IProfile<*>, current: Boolean) -> Boolean): AccountHeaderBuilder {
|
||||
return this.withOnAccountHeaderListener(object : AccountHeader.OnAccountHeaderListener {
|
||||
override fun onProfileChanged(view: View?, profile: IProfile<*>, current: Boolean): Boolean {
|
||||
return listener(view, profile, current)
|
||||
@ -29,7 +36,7 @@ fun AccountHeaderBuilder.withOnAccountHeaderListener(listener: (view: View?, pro
|
||||
})
|
||||
}
|
||||
|
||||
fun AccountHeaderBuilder.withOnAccountHeaderItemLongClickListener(listener: (view: View, profile: IProfile<*>, current: Boolean) -> Boolean): AccountHeaderBuilder {
|
||||
inline fun AccountHeaderBuilder.withOnAccountHeaderItemLongClickListener(crossinline listener: (view: View, profile: IProfile<*>, current: Boolean) -> Boolean): AccountHeaderBuilder {
|
||||
return this.withOnAccountHeaderItemLongClickListener(object : AccountHeader.OnAccountHeaderItemLongClickListener {
|
||||
override fun onProfileLongClick(view: View, profile: IProfile<*>, current: Boolean): Boolean {
|
||||
return listener(view, profile, current)
|
||||
@ -37,13 +44,13 @@ fun AccountHeaderBuilder.withOnAccountHeaderItemLongClickListener(listener: (vie
|
||||
})
|
||||
}
|
||||
|
||||
fun AccountHeaderBuilder.withOnAccountHeaderProfileImageListener(
|
||||
onClick: (
|
||||
inline fun AccountHeaderBuilder.withOnAccountHeaderProfileImageListener(
|
||||
crossinline onClick: (
|
||||
view: View,
|
||||
profile: IProfile<*>,
|
||||
current: Boolean
|
||||
) -> Boolean,
|
||||
onLongClick: (
|
||||
crossinline onLongClick: (
|
||||
view: View,
|
||||
profile: IProfile<*>,
|
||||
current: Boolean
|
||||
@ -59,10 +66,20 @@ fun AccountHeaderBuilder.withOnAccountHeaderProfileImageListener(
|
||||
})
|
||||
}
|
||||
|
||||
fun MiniDrawer.withOnMiniDrawerItemClickListener(listener: (view: View?, position: Int, drawerItem: IDrawerItem<*>, type: Int) -> Boolean): MiniDrawer {
|
||||
inline fun MiniDrawer.withOnMiniDrawerItemClickListener(crossinline listener: (view: View?, position: Int, drawerItem: IDrawerItem<*>, type: Int) -> Boolean): MiniDrawer {
|
||||
return this.withOnMiniDrawerItemClickListener(object : MiniDrawer.OnMiniDrawerItemClickListener {
|
||||
override fun onItemClick(view: View?, position: Int, drawerItem: IDrawerItem<*>, type: Int): Boolean {
|
||||
return listener(view, position, drawerItem, type)
|
||||
}
|
||||
})
|
||||
}
|
||||
}*/
|
||||
|
||||
fun MaterialDrawerSliderView.updateBadge(identifier: Long, badge: StringHolder?) {
|
||||
val drawerItem = getDrawerItem(identifier)
|
||||
if (drawerItem is Badgeable) {
|
||||
drawerItem.withBadge(badge)
|
||||
updateItem(drawerItem)
|
||||
}
|
||||
}
|
||||
|
||||
fun <T : Iconable> T.withIcon(icon: IIcon) = withIcon(pl.szczodrzynski.navlib.ImageHolder(icon))
|
||||
|
@ -1,18 +1,20 @@
|
||||
package pl.szczodrzynski.navlib
|
||||
|
||||
import android.content.Context
|
||||
import android.content.res.ColorStateList
|
||||
import android.graphics.Bitmap
|
||||
import android.graphics.PorterDuff
|
||||
import android.graphics.PorterDuffColorFilter
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.net.Uri
|
||||
import android.view.View
|
||||
import android.widget.ImageView
|
||||
import androidx.annotation.ColorInt
|
||||
import androidx.annotation.DrawableRes
|
||||
import androidx.appcompat.content.res.AppCompatResources
|
||||
import com.mikepenz.iconics.IconicsColor
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.IconicsSize
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.iconics.utils.actionBar
|
||||
import com.mikepenz.iconics.utils.sizeDp
|
||||
import com.mikepenz.materialdrawer.util.DrawerImageLoader
|
||||
import pl.droidsonroids.gif.GifDrawable
|
||||
import java.io.FileNotFoundException
|
||||
@ -23,19 +25,24 @@ import java.io.FileNotFoundException
|
||||
|
||||
open class ImageHolder : com.mikepenz.materialdrawer.holder.ImageHolder {
|
||||
|
||||
constructor(url: String) : super(url) {}
|
||||
|
||||
constructor(uri: Uri) : super(uri) {}
|
||||
|
||||
constructor(icon: Drawable?) : super(icon) {}
|
||||
|
||||
constructor(bitmap: Bitmap?) : super(bitmap) {}
|
||||
|
||||
constructor(@DrawableRes iconRes: Int) : super(iconRes) {}
|
||||
|
||||
constructor(iicon: IIcon) : super(null as Bitmap?) {
|
||||
this.iIcon = iicon
|
||||
constructor(@DrawableRes iconRes: Int, colorFilter: Int?) : super(iconRes) {
|
||||
this.colorFilter = colorFilter
|
||||
}
|
||||
constructor(iicon: IIcon) : super(null as Drawable?) {
|
||||
this.iicon = iicon
|
||||
}
|
||||
constructor() : super()
|
||||
constructor(url: String) : super(url)
|
||||
constructor(uri: Uri) : super(uri)
|
||||
constructor(icon: Drawable?) : super(icon)
|
||||
constructor(bitmap: Bitmap) : super(bitmap)
|
||||
constructor(iconRes: Int) : super(iconRes)
|
||||
|
||||
var iicon: IIcon? = null
|
||||
@ColorInt
|
||||
var colorFilter: Int? = null
|
||||
var colorFilterMode: PorterDuff.Mode = PorterDuff.Mode.DST_OVER
|
||||
|
||||
|
||||
/**
|
||||
* sets an existing image to the imageView
|
||||
@ -45,14 +52,14 @@ open class ImageHolder : com.mikepenz.materialdrawer.holder.ImageHolder {
|
||||
* @return true if an image was set
|
||||
*/
|
||||
override fun applyTo(imageView: ImageView, tag: String?): Boolean {
|
||||
val ii = iIcon
|
||||
val ii = iicon
|
||||
|
||||
if (uri != null) {
|
||||
if (uri.toString().endsWith(".gif", true)) {
|
||||
imageView.setImageDrawable(GifDrawable(uri.toString()))
|
||||
}
|
||||
else {
|
||||
val consumed = DrawerImageLoader.instance.setImage(imageView, uri, tag)
|
||||
val consumed = DrawerImageLoader.instance.setImage(imageView, uri!!, tag)
|
||||
if (!consumed) {
|
||||
imageView.setImageURI(uri)
|
||||
}
|
||||
@ -69,6 +76,46 @@ open class ImageHolder : com.mikepenz.materialdrawer.holder.ImageHolder {
|
||||
imageView.setImageBitmap(null)
|
||||
return false
|
||||
}
|
||||
|
||||
if (colorFilter != null) {
|
||||
imageView.colorFilter = PorterDuffColorFilter(colorFilter!!, colorFilterMode)
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
/**
|
||||
* this only handles Drawables
|
||||
*
|
||||
* @param ctx
|
||||
* @param iconColor
|
||||
* @param tint
|
||||
* @return
|
||||
*/
|
||||
override fun decideIcon(ctx: Context, iconColor: ColorStateList, tint: Boolean, paddingDp: Int): Drawable? {
|
||||
var icon: Drawable? = icon
|
||||
val ii = iicon
|
||||
val uri = uri
|
||||
|
||||
when {
|
||||
ii != null -> icon = IconicsDrawable(ctx).apply {
|
||||
this.icon = ii
|
||||
colorList = iconColor
|
||||
sizeDp = 24
|
||||
}
|
||||
iconRes != -1 -> icon = AppCompatResources.getDrawable(ctx, iconRes)
|
||||
uri != null -> try {
|
||||
val inputStream = ctx.contentResolver.openInputStream(uri)
|
||||
icon = Drawable.createFromStream(inputStream, uri.toString())
|
||||
} catch (e: FileNotFoundException) {
|
||||
//no need to handle this
|
||||
}
|
||||
}
|
||||
//if we got an icon AND we have auto tinting enabled AND it is no IIcon, tint it ;)
|
||||
if (icon != null && tint && iicon == null) {
|
||||
icon = icon.mutate()
|
||||
icon.setColorFilter(iconColor.defaultColor, PorterDuff.Mode.SRC_IN)
|
||||
}
|
||||
return icon
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,20 @@
|
||||
package pl.szczodrzynski.navlib
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.graphics.drawable.LayerDrawable
|
||||
import android.util.AttributeSet
|
||||
import android.view.Gravity
|
||||
import android.view.MenuItem
|
||||
import android.view.View
|
||||
import androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
import androidx.core.content.ContextCompat
|
||||
import com.google.android.material.bottomappbar.BottomAppBar
|
||||
import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||
import com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
||||
import com.mikepenz.iconics.utils.colorInt
|
||||
import com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont
|
||||
import com.mikepenz.iconics.utils.sizeDp
|
||||
import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet
|
||||
import pl.szczodrzynski.navlib.drawer.NavDrawer
|
||||
@ -87,11 +89,19 @@ class NavBottomBar : BottomAppBar {
|
||||
/**
|
||||
* Set the FAB's icon.
|
||||
*/
|
||||
var fabIcon: IIcon = CommunityMaterial.Icon.cmd_android
|
||||
var fabIcon: IIcon? = null
|
||||
set(value) {
|
||||
field = value
|
||||
fabView?.setImageDrawable(IconicsDrawable(context, value).colorInt(R.attr.colorFabIcon).sizeDp(24))
|
||||
fabExtendedView?.icon = IconicsDrawable(context, value).colorInt(R.attr.colorFabIcon).sizeDp(24)
|
||||
fabView?.setImageDrawable(IconicsDrawable(context).apply {
|
||||
icon = value
|
||||
colorAttr(context, R.attr.colorFabIcon)
|
||||
sizeDp = 24
|
||||
})
|
||||
fabExtendedView?.icon = IconicsDrawable(context).apply {
|
||||
icon = value
|
||||
colorAttr(context, R.attr.colorFabIcon)
|
||||
sizeDp = 24
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Set the ExtendedFAB's text.
|
||||
@ -102,6 +112,15 @@ class NavBottomBar : BottomAppBar {
|
||||
fabExtendedView?.text = value
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the FAB's on click listener
|
||||
*/
|
||||
fun setFabOnClickListener(onClickListener: OnClickListener?) {
|
||||
fabView?.setOnClickListener(onClickListener)
|
||||
fabExtendedView?.setOnClickListener(onClickListener)
|
||||
}
|
||||
|
||||
@SuppressLint("ClickableViewAccessibility")
|
||||
private fun create(attrs: AttributeSet?, defStyle: Int) {
|
||||
setOnTouchListener { _, event ->
|
||||
if (bottomSheet?.enable != true || bottomSheet?.enableDragToOpen != true)
|
||||
@ -112,17 +131,24 @@ class NavBottomBar : BottomAppBar {
|
||||
|
||||
elevation = 0f
|
||||
|
||||
navigationIcon = IconicsDrawable(context)
|
||||
.icon(CommunityMaterial.Icon2.cmd_menu)
|
||||
.sizeDp(20)
|
||||
.colorInt(getColorFromAttr(context, R.attr.colorOnPrimary))
|
||||
val icon = ContextCompat.getDrawable(context, R.drawable.ic_menu_badge) as LayerDrawable?
|
||||
icon?.apply {
|
||||
mutate()
|
||||
setDrawableByLayerId(R.id.ic_menu, IconicsDrawable(context).apply {
|
||||
this.icon = NavLibFont.Icon.nav_menu
|
||||
sizeDp = 24
|
||||
colorAttr(context, R.attr.colorOnPrimary)
|
||||
})
|
||||
setDrawableByLayerId(R.id.ic_badge, BadgeDrawable(context))
|
||||
}
|
||||
navigationIcon = icon
|
||||
|
||||
menu.add(0, -1, 0, "Menu")
|
||||
.setIcon(
|
||||
IconicsDrawable(context)
|
||||
.icon(CommunityMaterial.Icon.cmd_dots_vertical)
|
||||
.sizeDp(20)
|
||||
.colorInt(getColorFromAttr(context, R.attr.colorOnPrimary)))
|
||||
.setIcon(IconicsDrawable(context).apply {
|
||||
this.icon = NavLibFont.Icon.nav_dots_vertical
|
||||
sizeDp = 24
|
||||
colorAttr(context, R.attr.colorOnPrimary)
|
||||
})
|
||||
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS)
|
||||
|
||||
setNavigationOnClickListener {
|
||||
@ -182,4 +208,4 @@ class NavBottomBar : BottomAppBar {
|
||||
override fun setOnMenuItemClickListener(listener: OnMenuItemClickListener?) {
|
||||
onMenuItemClickListener = listener
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,9 +2,11 @@ package pl.szczodrzynski.navlib
|
||||
|
||||
import android.content.Context
|
||||
import android.util.AttributeSet
|
||||
import android.widget.ImageView
|
||||
import com.google.android.material.appbar.MaterialToolbar
|
||||
|
||||
class NavToolbar : MaterialToolbar {
|
||||
|
||||
constructor(context: Context) : super(context) {
|
||||
create(null, 0)
|
||||
}
|
||||
@ -17,7 +19,37 @@ class NavToolbar : MaterialToolbar {
|
||||
create(attrs, defStyle)
|
||||
}
|
||||
|
||||
var toolbarImage: ImageView? = null
|
||||
set(value) {
|
||||
field = value
|
||||
toolbarImage?.setOnClickListener {
|
||||
profileImageClickListener?.invoke()
|
||||
}
|
||||
}
|
||||
|
||||
override fun setSubtitle(subtitle: CharSequence?) {
|
||||
if(subtitle.isNullOrEmpty()) {
|
||||
setPadding(0, 0, 0, 0)
|
||||
toolbarImage?.translationY = 0f
|
||||
} else {
|
||||
setPadding(0, -1, 0, 5)
|
||||
toolbarImage?.translationY = 6f
|
||||
}
|
||||
super.setSubtitle(subtitle)
|
||||
}
|
||||
|
||||
private fun create(attrs: AttributeSet?, defStyle: Int) {
|
||||
|
||||
}
|
||||
|
||||
var subtitleFormat: Int? = null
|
||||
var subtitleFormatWithUnread: Int? = null
|
||||
|
||||
var profileImageClickListener: (() -> Unit)? = null
|
||||
|
||||
var profileImage
|
||||
get() = toolbarImage?.drawable
|
||||
set(value) {
|
||||
toolbarImage?.setImageDrawable(value)
|
||||
}
|
||||
}
|
@ -3,6 +3,7 @@ package pl.szczodrzynski.navlib
|
||||
import android.content.Context
|
||||
import android.content.res.Configuration
|
||||
import android.content.res.Configuration.ORIENTATION_PORTRAIT
|
||||
import android.graphics.Point
|
||||
import android.util.AttributeSet
|
||||
import android.util.Log
|
||||
import android.view.LayoutInflater
|
||||
@ -12,10 +13,10 @@ import android.view.ViewGroup.LayoutParams.MATCH_PARENT
|
||||
import android.widget.FrameLayout
|
||||
import android.widget.LinearLayout
|
||||
import androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
import androidx.core.view.children
|
||||
import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||
import com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
import kotlinx.android.synthetic.main.nav_view.view.*
|
||||
import pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch
|
||||
import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet
|
||||
import pl.szczodrzynski.navlib.drawer.NavDrawer
|
||||
|
||||
@ -39,6 +40,9 @@ class NavView : FrameLayout {
|
||||
lateinit var toolbar: NavToolbar
|
||||
lateinit var bottomBar: NavBottomBar
|
||||
lateinit var bottomSheet: NavBottomSheet
|
||||
val coordinator by lazy {
|
||||
findViewById<CoordinatorLayout>(R.id.nv_coordinator)
|
||||
}
|
||||
|
||||
var navigationLoader: NavigationLoader? = null
|
||||
|
||||
@ -75,10 +79,10 @@ class NavView : FrameLayout {
|
||||
|
||||
drawer = NavDrawer(
|
||||
context,
|
||||
findViewById(R.id.nv_drawerContainer),
|
||||
findViewById(R.id.nv_fixedDrawerContainer),
|
||||
findViewById(R.id.nv_miniDrawerContainerLandscape),
|
||||
findViewById(R.id.nv_miniDrawerContainerPortrait)
|
||||
findViewById(R.id.nv_drawerLayout),
|
||||
findViewById(R.id.nv_drawerContainerLandscape),
|
||||
findViewById(R.id.nv_miniDrawerContainerPortrait),
|
||||
findViewById(R.id.nv_miniDrawerElevation)
|
||||
)
|
||||
toolbar = findViewById(R.id.nv_toolbar)
|
||||
bottomBar = findViewById(R.id.nv_bottomBar)
|
||||
@ -87,23 +91,43 @@ class NavView : FrameLayout {
|
||||
drawer.toolbar = toolbar
|
||||
drawer.bottomBar = bottomBar
|
||||
|
||||
toolbar.toolbarImage = findViewById(R.id.nv_toolbar_image)
|
||||
|
||||
bottomBar.drawer = drawer
|
||||
bottomBar.bottomSheet = bottomSheet
|
||||
bottomBar.fabView = floatingActionButton
|
||||
bottomBar.fabExtendedView = extendedFloatingActionButton
|
||||
|
||||
ripple.isEnabled = false
|
||||
ripple.children.forEach { it.isEnabled = false }
|
||||
|
||||
//bottomSheetBehavior.peekHeight = displayHeight
|
||||
}
|
||||
|
||||
private fun convertDpToPixel(dp: Float): Float {
|
||||
val resources = context.resources
|
||||
val metrics = resources.displayMetrics
|
||||
return dp * (metrics.densityDpi / 160f)
|
||||
}
|
||||
|
||||
fun gainAttentionOnBottomBar() {
|
||||
var x = ripple.width.toFloat()
|
||||
var y = ripple.height.toFloat()
|
||||
x -= convertDpToPixel(56f) / 2
|
||||
y -= convertDpToPixel(56f) / 2
|
||||
ripple.performRipple(Point(x.toInt(), y.toInt()))
|
||||
}
|
||||
|
||||
fun configSystemBarsUtil(systemBarsUtil: SystemBarsUtil) {
|
||||
this.systemBarsUtil = systemBarsUtil
|
||||
systemBarsUtil.statusBarBgView = statusBarBackground
|
||||
systemBarsUtil.navigationBarBgView = navigationBarBackground
|
||||
systemBarsUtil.statusBarDarkView = nv_statusBarDarker
|
||||
//systemBarsUtil.navigationBarDarkView = navigationBarBackground
|
||||
systemBarsUtil.insetsListener = nv_drawerContainer
|
||||
systemBarsUtil.marginBySystemBars = mainView
|
||||
systemBarsUtil.paddingByNavigationBar = bottomSheet.getContentView()
|
||||
this.systemBarsUtil = systemBarsUtil.apply {
|
||||
this.statusBarBgView = statusBarBackground
|
||||
this.navigationBarBgView = navigationBarBackground
|
||||
this.statusBarDarkView = nv_statusBarDarker
|
||||
//this.navigationBarDarkView = navigationBarBackground
|
||||
this.insetsListener = nv_drawerLayout
|
||||
this.marginBySystemBars = mainView
|
||||
this.paddingByNavigationBar = bottomSheet.getContentView()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -131,12 +155,11 @@ class NavView : FrameLayout {
|
||||
/**
|
||||
* Set the FAB's on click listener
|
||||
*/
|
||||
fun setFabOnClickListener(onClickListener: OnClickListener) {
|
||||
floatingActionButton.setOnClickListener(onClickListener)
|
||||
extendedFloatingActionButton.setOnClickListener(onClickListener)
|
||||
fun setFabOnClickListener(onClickListener: OnClickListener?) {
|
||||
bottomBar.setFabOnClickListener(onClickListener)
|
||||
}
|
||||
|
||||
var systemBarsUtil: SystemBarsUtil? = null
|
||||
internal var systemBarsUtil: SystemBarsUtil? = null
|
||||
|
||||
private fun setContentMargins() {
|
||||
val layoutParams = CoordinatorLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT)
|
||||
@ -164,7 +187,7 @@ class NavView : FrameLayout {
|
||||
}
|
||||
|
||||
fun onBackPressed(): Boolean {
|
||||
if (drawer.isOpen) {
|
||||
if (drawer.isOpen && !drawer.fixedDrawerEnabled()) {
|
||||
if (drawer.profileSelectionIsOpen) {
|
||||
drawer.profileSelectionClose()
|
||||
return true
|
||||
|
@ -5,13 +5,12 @@ import android.content.res.Configuration.ORIENTATION_PORTRAIT
|
||||
import android.content.res.Resources
|
||||
import android.graphics.Color
|
||||
import android.os.Build.VERSION.SDK_INT
|
||||
import android.os.Build.VERSION_CODES.*
|
||||
import android.os.Build.VERSION_CODES
|
||||
import android.util.Log
|
||||
import android.view.View
|
||||
import android.view.View.*
|
||||
import android.view.Window
|
||||
import android.view.WindowManager
|
||||
import android.widget.Toast
|
||||
import androidx.core.graphics.ColorUtils
|
||||
import androidx.core.view.ViewCompat
|
||||
import com.mikepenz.materialize.util.KeyboardUtil
|
||||
@ -185,12 +184,12 @@ class SystemBarsUtil(private val activity: Activity) {
|
||||
// #3 SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the activity not resize when keyboard is open
|
||||
// Samsung TouchWiz - app will go fullscreen. There is a problem though, see #3.
|
||||
var targetAppFullscreen = false
|
||||
if (SDK_INT >= KITKAT) {
|
||||
if (SDK_INT >= VERSION_CODES.KITKAT) {
|
||||
targetAppFullscreen = true
|
||||
}
|
||||
|
||||
|
||||
if (SDK_INT in KITKAT until LOLLIPOP) {
|
||||
if (SDK_INT in VERSION_CODES.KITKAT until VERSION_CODES.LOLLIPOP) {
|
||||
// API 19-20 (KitKat 4.4) - set gradient status bar
|
||||
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
|
||||
// take FallbackGradient color
|
||||
@ -198,7 +197,7 @@ class SystemBarsUtil(private val activity: Activity) {
|
||||
// disable darker even if [statusBarDarker] == true BUT gradient fallback is not COLOR_HALF_TRANSPARENT
|
||||
//targetStatusBarDarker = targetStatusBarDarker && targetStatusBarFallbackGradient == COLOR_HALF_TRANSPARENT
|
||||
}
|
||||
else if (SDK_INT >= LOLLIPOP) {
|
||||
else if (SDK_INT >= VERSION_CODES.LOLLIPOP) {
|
||||
// API 21+ (Lollipop 5.0+) - set transparent status bar
|
||||
if (statusBarTranslucent) {
|
||||
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
|
||||
@ -206,17 +205,17 @@ class SystemBarsUtil(private val activity: Activity) {
|
||||
else {
|
||||
window.statusBarColor = Color.TRANSPARENT
|
||||
}
|
||||
if (SDK_INT < M && targetStatusBarLight) {
|
||||
if (SDK_INT < VERSION_CODES.M && targetStatusBarLight) {
|
||||
// take FallbackLight color
|
||||
targetStatusBarMode = TARGET_MODE_LIGHT
|
||||
}
|
||||
}
|
||||
if (SDK_INT >= M && targetStatusBarLight) {
|
||||
if (SDK_INT >= VERSION_CODES.M && targetStatusBarLight) {
|
||||
// API 23+ (Marshmallow 6.0+) - set the status bar icons to dark color if [statusBarLight] is true
|
||||
window.decorView.systemUiVisibility = window.decorView.systemUiVisibility or SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
||||
}
|
||||
// FOR SAMSUNG/SONY DEVICES (TouchWiz 4.1-4.3)
|
||||
if (SDK_INT < KITKAT) {
|
||||
if (SDK_INT < VERSION_CODES.KITKAT) {
|
||||
val libs = activity.packageManager.systemSharedLibraryNames
|
||||
var reflect: String? = null
|
||||
// TODO galaxy s3 - opening keyboard does not resize activity if fullscreen
|
||||
@ -282,22 +281,21 @@ class SystemBarsUtil(private val activity: Activity) {
|
||||
|
||||
// TODO navigation bar options like status bar
|
||||
// NAVIGATION BAR
|
||||
if (SDK_INT >= KITKAT && (SDK_INT < LOLLIPOP || !navigationBarTransparent)) {
|
||||
if (SDK_INT >= VERSION_CODES.KITKAT && (SDK_INT < VERSION_CODES.LOLLIPOP || !navigationBarTransparent)) {
|
||||
// API 19-20 (KitKat 4.4) - set gradient navigation bar
|
||||
// API 21+ (Lollipop 5.0+) - set half-transparent navigation bar if [navigationBarTransparent] is false
|
||||
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION)
|
||||
}
|
||||
|
||||
if (SDK_INT >= LOLLIPOP && navigationBarTransparent) {
|
||||
if (SDK_INT >= VERSION_CODES.LOLLIPOP && navigationBarTransparent) {
|
||||
// API 21+ (Lollipop 5.0+) - set fully transparent navigation bar if [navigationBarTransparent] is true
|
||||
window.navigationBarColor = Color.TRANSPARENT
|
||||
}
|
||||
|
||||
// PADDING
|
||||
if (insetsListener != null) {
|
||||
if (SDK_INT >= LOLLIPOP) {
|
||||
if (SDK_INT >= VERSION_CODES.LOLLIPOP && false) {
|
||||
ViewCompat.setOnApplyWindowInsetsListener(insetsListener!!) { _, insets ->
|
||||
Toast.makeText(activity, "Insets applied ", Toast.LENGTH_SHORT).show()
|
||||
Log.d("NavLib", "Got insets left = ${insets.systemWindowInsetLeft}, top = ${insets.systemWindowInsetTop}, right = ${insets.systemWindowInsetRight}, bottom = ${insets.systemWindowInsetBottom}")
|
||||
if (insetsApplied)
|
||||
return@setOnApplyWindowInsetsListener insets.consumeSystemWindowInsets()
|
||||
@ -375,4 +373,4 @@ class SystemBarsUtil(private val activity: Activity) {
|
||||
keyboardUtil?.disable()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,28 +3,20 @@ package pl.szczodrzynski.navlib
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import android.content.res.Configuration
|
||||
import android.content.res.Resources
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.os.Build
|
||||
import android.util.DisplayMetrics
|
||||
import android.util.TypedValue
|
||||
import android.view.View
|
||||
import android.view.WindowManager
|
||||
import androidx.annotation.AttrRes
|
||||
import androidx.annotation.ColorInt
|
||||
import androidx.annotation.ColorRes
|
||||
import androidx.annotation.DrawableRes
|
||||
import com.google.android.material.elevation.ElevationOverlayProvider
|
||||
import com.mikepenz.iconics.IconicsColor
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import android.util.DisplayMetrics
|
||||
import android.view.Display
|
||||
import android.view.WindowManager
|
||||
import android.R.attr.y
|
||||
import android.R.attr.x
|
||||
import android.graphics.Point
|
||||
import com.mikepenz.materialdrawer.Drawer
|
||||
import com.mikepenz.materialdrawer.holder.StringHolder
|
||||
import com.mikepenz.materialdrawer.model.BaseDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.Badgeable
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
||||
import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem
|
||||
import com.mikepenz.iconics.utils.colorInt
|
||||
|
||||
|
||||
/*private val displayMetrics by lazy {
|
||||
@ -63,12 +55,6 @@ fun getBottomInset(context: Context, view: View): Float {
|
||||
} * context.resources.displayMetrics.density
|
||||
}
|
||||
|
||||
fun getColorFromAttr(context: Context, @AttrRes color: Int): Int {
|
||||
val typedValue = TypedValue()
|
||||
context.theme.resolveAttribute(color, typedValue, true)
|
||||
return typedValue.data
|
||||
}
|
||||
|
||||
fun View.getActivity(): Activity {
|
||||
return findViewById<View>(android.R.id.content).context as Activity
|
||||
}
|
||||
@ -134,7 +120,15 @@ fun hasNavigationBar(context: Context): Boolean {
|
||||
return hasNavigationBar
|
||||
}
|
||||
|
||||
fun IconicsDrawable.colorAttr(context: Context, @AttrRes attrRes: Int) = color(IconicsColor.colorInt(getColorFromAttr(context, attrRes)))
|
||||
fun IconicsDrawable.colorAttr(context: Context, @AttrRes attrRes: Int) {
|
||||
colorInt = getColorFromAttr(context, attrRes)
|
||||
}
|
||||
|
||||
fun getColorFromAttr(context: Context, @AttrRes color: Int): Int {
|
||||
val typedValue = TypedValue()
|
||||
context.theme.resolveAttribute(color, typedValue, true)
|
||||
return typedValue.data
|
||||
}
|
||||
|
||||
fun Context.getDrawableFromRes(@DrawableRes id: Int): Drawable {
|
||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||
@ -145,10 +139,26 @@ fun Context.getDrawableFromRes(@DrawableRes id: Int): Drawable {
|
||||
}
|
||||
}
|
||||
|
||||
fun Drawer.updateBadge(identifier: Long, badge: StringHolder?) {
|
||||
val drawerItem = getDrawerItem(identifier)
|
||||
if (drawerItem is Badgeable<*>) {
|
||||
drawerItem.withBadge(badge)
|
||||
updateItem(drawerItem)
|
||||
@ColorInt
|
||||
fun Context.getColorFromRes(@ColorRes id: Int): Int {
|
||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||
resources.getColor(id, theme)
|
||||
}
|
||||
}
|
||||
else {
|
||||
resources.getColor(id)
|
||||
}
|
||||
}
|
||||
|
||||
fun crc16(buffer: String): Int {
|
||||
/* Note the change here */
|
||||
var crc = 0x1D0F
|
||||
for (j in buffer) {
|
||||
crc = crc.ushr(8) or (crc shl 8) and 0xffff
|
||||
crc = crc xor (j.toInt() and 0xff)//byte to int, trunc sign
|
||||
crc = crc xor (crc and 0xff shr 4)
|
||||
crc = crc xor (crc shl 12 and 0xffff)
|
||||
crc = crc xor (crc and 0xFF shl 5 and 0xffff)
|
||||
}
|
||||
crc = crc and 0xffff
|
||||
return crc
|
||||
}
|
||||
|
@ -5,7 +5,6 @@ import android.content.Context
|
||||
import android.graphics.PorterDuff
|
||||
import android.graphics.PorterDuffColorFilter
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.system.Os.close
|
||||
import android.text.Editable
|
||||
import android.text.TextWatcher
|
||||
import android.util.AttributeSet
|
||||
@ -28,13 +27,12 @@ import com.google.android.material.textfield.TextInputEditText
|
||||
import com.google.android.material.textfield.TextInputLayout
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
||||
import com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont
|
||||
import com.mikepenz.iconics.utils.paddingDp
|
||||
import com.mikepenz.iconics.utils.sizeDp
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
||||
import pl.szczodrzynski.navlib.*
|
||||
import pl.szczodrzynski.navlib.bottomsheet.items.IBottomSheetItem
|
||||
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
|
||||
import pl.szczodrzynski.navlib.bottomsheet.items.IBottomSheetItem
|
||||
|
||||
|
||||
class NavBottomSheet : CoordinatorLayout {
|
||||
@ -152,6 +150,7 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
// steal the focus from any EditTexts
|
||||
dragBar.requestFocus()
|
||||
hideKeyboard()
|
||||
onCloseListener?.invoke()
|
||||
}
|
||||
else if (!bottomSheetVisible) {
|
||||
bottomSheetVisible = true
|
||||
@ -179,6 +178,8 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
textInputEditText.addTextChangedListener(textInputWatcher)
|
||||
}
|
||||
|
||||
var onCloseListener: (() -> Unit)? = null
|
||||
|
||||
/* _____ _
|
||||
|_ _| |
|
||||
| | | |_ ___ _ __ ___ ___
|
||||
@ -189,38 +190,52 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
appendItem(item)
|
||||
}
|
||||
fun appendItem(item: IBottomSheetItem<*>) {
|
||||
items += item
|
||||
adapter.notifyItemInserted(items.size - 1)
|
||||
items.add(item)
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemInserted(items.size - 1)
|
||||
}
|
||||
fun appendItems(vararg items: IBottomSheetItem<*>) {
|
||||
this.items.addAll(items)
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemRangeInserted(this.items.size - items.size, items.size)
|
||||
}
|
||||
fun prependItem(item: IBottomSheetItem<*>) {
|
||||
items.add(0, item)
|
||||
adapter.notifyItemInserted(0)
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemInserted(0)
|
||||
}
|
||||
fun prependItems(vararg items: IBottomSheetItem<*>) {
|
||||
this.items.addAll(0, items.toList())
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemRangeInserted(0, items.size)
|
||||
}
|
||||
fun addItemAt(index: Int, item: IBottomSheetItem<*>) {
|
||||
items.add(index, item)
|
||||
adapter.notifyItemInserted(index)
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemInserted(index)
|
||||
}
|
||||
fun removeItemById(id: Int) {
|
||||
items.filterNot { it.id == id }
|
||||
}
|
||||
fun removeItemAt(index: Int) {
|
||||
items.removeAt(index)
|
||||
adapter.notifyItemRemoved(index)
|
||||
adapter.notifyDataSetChanged()
|
||||
//adapter.notifyItemRemoved(index)
|
||||
}
|
||||
fun removeAllItems() {
|
||||
items.clear()
|
||||
adapter.notifyDataSetChanged()
|
||||
}
|
||||
fun removeAllStatic() {
|
||||
items.filter { it.isContextual }
|
||||
items.removeAll { !it.isContextual }
|
||||
adapter.notifyDataSetChanged()
|
||||
}
|
||||
fun removeAllContextual() {
|
||||
items.filter { !it.isContextual }
|
||||
items.removeAll { it.isContextual }
|
||||
adapter.notifyDataSetChanged()
|
||||
}
|
||||
fun removeSeparators() {
|
||||
items.filterNot { it is BottomSheetSeparatorItem }
|
||||
items.removeAll { it is BottomSheetSeparatorItem }
|
||||
adapter.notifyDataSetChanged()
|
||||
}
|
||||
|
||||
@ -263,7 +278,9 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
private fun toggleGroupGetIconicsDrawable(context: Context, icon: IIcon?): Drawable? {
|
||||
if (icon == null)
|
||||
return null
|
||||
return IconicsDrawable(context, icon).sizeDp(24).paddingDp(4)
|
||||
return IconicsDrawable(context, icon).apply {
|
||||
sizeDp = 24
|
||||
}
|
||||
}
|
||||
|
||||
fun toggleGroupAddItem(id: Int, text: String, @DrawableRes icon: Int, defaultSortOrder: Int = SORT_MODE_ASCENDING) {
|
||||
@ -300,7 +317,7 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
* bit 2 = current sorting mode
|
||||
*/
|
||||
if (toggleGroupSelectionMode == TOGGLE_GROUP_SORTING_ORDER) {
|
||||
val button = group.findViewById<MaterialButton>(checkedId)
|
||||
val button = group.findViewById<MaterialButton>(checkedId) ?: return@OnButtonCheckedListener
|
||||
var tag = button.tag as Int
|
||||
var sortingMode: Int? = null
|
||||
if (isChecked) {
|
||||
@ -320,8 +337,8 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
}
|
||||
button.tag = tag
|
||||
button.icon = toggleGroupGetIconicsDrawable(context, when (sortingMode) {
|
||||
SORT_MODE_ASCENDING -> CommunityMaterial.Icon2.cmd_sort_ascending
|
||||
SORT_MODE_DESCENDING -> CommunityMaterial.Icon2.cmd_sort_descending
|
||||
SORT_MODE_ASCENDING -> NavLibFont.Icon.nav_sort_ascending
|
||||
SORT_MODE_DESCENDING -> NavLibFont.Icon.nav_sort_descending
|
||||
else -> null
|
||||
})
|
||||
if (sortingMode != null) {
|
||||
@ -369,7 +386,11 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
set(value) {
|
||||
textInputLayout.startIconDrawable = when (value) {
|
||||
is Drawable -> value
|
||||
is IIcon -> IconicsDrawable(context, value).sizeDp(24)/*.colorInt(Color.BLACK)*/
|
||||
is IIcon -> IconicsDrawable(context).apply {
|
||||
icon = value
|
||||
sizeDp = 24
|
||||
// colorInt = Color.BLACK
|
||||
}
|
||||
is Int -> context.getDrawableFromRes(value)
|
||||
else -> null
|
||||
}
|
||||
@ -414,4 +435,4 @@ class NavBottomSheet : CoordinatorLayout {
|
||||
return
|
||||
isOpen = !isOpen
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,15 +2,15 @@ package pl.szczodrzynski.navlib.bottomsheet.items
|
||||
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.view.View
|
||||
import android.widget.ImageView
|
||||
import android.widget.TextView
|
||||
import androidx.annotation.DrawableRes
|
||||
import androidx.annotation.StringRes
|
||||
import androidx.recyclerview.widget.RecyclerView
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.typeface.IIcon
|
||||
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
||||
import com.mikepenz.iconics.utils.sizeDp
|
||||
import com.mikepenz.materialize.holder.ImageHolder
|
||||
import pl.szczodrzynski.navlib.ImageHolder
|
||||
import pl.szczodrzynski.navlib.R
|
||||
import pl.szczodrzynski.navlib.colorAttr
|
||||
import pl.szczodrzynski.navlib.getColorFromAttr
|
||||
@ -33,22 +33,32 @@ data class BottomSheetPrimaryItem(override val isContextual: Boolean = true) : I
|
||||
|
||||
class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
|
||||
val root = itemView.findViewById<View>(R.id.item_root)
|
||||
val image = itemView.findViewById<ImageView>(R.id.item_icon)
|
||||
val text = itemView.findViewById<TextView>(R.id.item_text)
|
||||
val description = itemView.findViewById<TextView>(R.id.item_description)
|
||||
}
|
||||
|
||||
override fun bindViewHolder(viewHolder: ViewHolder) {
|
||||
viewHolder.root.setOnClickListener(onClickListener)
|
||||
viewHolder.text.text = title
|
||||
viewHolder.text.setTextColor(getColorFromAttr(viewHolder.text.context, R.attr.material_drawer_primary_text))
|
||||
viewHolder.text.setCompoundDrawables(
|
||||
IconicsDrawable(viewHolder.text.context)
|
||||
.icon(iconicsIcon?:CommunityMaterial.Icon.cmd_android)
|
||||
.colorAttr(viewHolder.text.context, R.attr.material_drawer_primary_icon)
|
||||
.sizeDp(20),
|
||||
null,
|
||||
null,
|
||||
null
|
||||
)
|
||||
|
||||
viewHolder.image.setImageDrawable(IconicsDrawable(viewHolder.text.context).apply {
|
||||
icon = iconicsIcon
|
||||
colorAttr(viewHolder.text.context, android.R.attr.textColorSecondary)
|
||||
sizeDp = 24
|
||||
})
|
||||
|
||||
viewHolder.description.visibility = View.VISIBLE
|
||||
when {
|
||||
descriptionRes != null -> viewHolder.description.setText(descriptionRes!!)
|
||||
description != null -> viewHolder.description.text = description
|
||||
else -> viewHolder.description.visibility = View.GONE
|
||||
}
|
||||
|
||||
when {
|
||||
titleRes != null -> viewHolder.text.setText(titleRes!!)
|
||||
else -> viewHolder.text.text = title
|
||||
}
|
||||
viewHolder.text.setTextColor(getColorFromAttr(viewHolder.text.context, android.R.attr.textColorPrimary))
|
||||
}
|
||||
|
||||
/*_____ _
|
||||
@ -111,4 +121,4 @@ data class BottomSheetPrimaryItem(override val isContextual: Boolean = true) : I
|
||||
this.onClickListener = onClickListener
|
||||
return this
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,17 @@
|
||||
package pl.szczodrzynski.navlib.drawer
|
||||
|
||||
data class IDrawerProfile(var id: Int,
|
||||
var name: String,
|
||||
var subname: String?,
|
||||
var image: String?)
|
||||
import android.content.Context
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.widget.ImageView
|
||||
import pl.szczodrzynski.navlib.ImageHolder
|
||||
|
||||
interface IDrawerProfile {
|
||||
val id: Int
|
||||
var name: String
|
||||
var subname: String?
|
||||
var image: String?
|
||||
|
||||
fun getImageDrawable(context: Context): Drawable?
|
||||
fun getImageHolder(context: Context): ImageHolder?
|
||||
fun applyImageTo(imageView: ImageView)
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
package pl.szczodrzynski.navlib.drawer
|
||||
|
||||
data class IUnreadCounter(val profileId: Int,
|
||||
val type: Int,
|
||||
var drawerItemId: Int? = null,
|
||||
var count: Int)
|
||||
interface IUnreadCounter {
|
||||
var profileId: Int
|
||||
var type: Int
|
||||
var drawerItemId: Int?
|
||||
var count: Int
|
||||
}
|
@ -6,41 +6,46 @@ import android.content.Context
|
||||
import android.content.res.Configuration
|
||||
import android.content.res.Resources
|
||||
import android.graphics.Color
|
||||
import android.graphics.drawable.Drawable
|
||||
import android.net.Uri
|
||||
import android.graphics.PorterDuff
|
||||
import android.graphics.drawable.LayerDrawable
|
||||
import android.util.Log
|
||||
import android.view.Gravity
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
|
||||
import android.view.ViewGroup.LayoutParams.WRAP_CONTENT
|
||||
import android.widget.FrameLayout
|
||||
import android.widget.LinearLayout
|
||||
import android.widget.Toast
|
||||
import androidx.core.content.ContextCompat
|
||||
import androidx.customview.widget.ViewDragHelper
|
||||
import androidx.drawerlayout.widget.DrawerLayout
|
||||
import com.mikepenz.iconics.IconicsColor
|
||||
import com.mikepenz.iconics.IconicsColor.Companion.colorRes
|
||||
import com.mikepenz.iconics.IconicsDrawable
|
||||
import com.mikepenz.iconics.IconicsSize
|
||||
import com.mikepenz.iconics.IconicsSize.Companion.dp
|
||||
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
||||
import com.mikepenz.fastadapter.IAdapter
|
||||
import com.mikepenz.itemanimators.AlphaCrossFadeAnimator
|
||||
import com.mikepenz.materialdrawer.*
|
||||
import com.mikepenz.materialdrawer.holder.BadgeStyle
|
||||
import com.mikepenz.materialdrawer.holder.ColorHolder
|
||||
import com.mikepenz.materialdrawer.holder.StringHolder
|
||||
import com.mikepenz.materialdrawer.model.BaseDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.MiniProfileDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.ProfileDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.ProfileSettingDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
||||
import com.mikepenz.materialdrawer.model.interfaces.IProfile
|
||||
import pl.droidsonroids.gif.GifDrawable
|
||||
import pl.droidsonroids.gif.MultiCallback
|
||||
import com.mikepenz.materialdrawer.model.interfaces.*
|
||||
import com.mikepenz.materialdrawer.util.*
|
||||
import com.mikepenz.materialdrawer.widget.AccountHeaderView
|
||||
import com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView
|
||||
import com.mikepenz.materialdrawer.widget.MiniDrawerSliderView
|
||||
import com.mikepenz.materialize.util.UIUtils
|
||||
import pl.szczodrzynski.navlib.*
|
||||
import pl.szczodrzynski.navlib.R
|
||||
import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem
|
||||
|
||||
class NavDrawer(
|
||||
val context: Context,
|
||||
val drawerContainer: LinearLayout,
|
||||
val fixedDrawerContainer: FrameLayout,
|
||||
val miniDrawerContainerLandscape: FrameLayout,
|
||||
val miniDrawerContainerPortrait: FrameLayout
|
||||
val drawerLayout: DrawerLayout,
|
||||
val drawerContainerLandscape: FrameLayout,
|
||||
val drawerContainerPortrait: FrameLayout,
|
||||
val miniDrawerElevation: View
|
||||
) {
|
||||
companion object {
|
||||
private const val DRAWER_MODE_NORMAL = 0
|
||||
@ -55,11 +60,9 @@ class NavDrawer(
|
||||
internal lateinit var toolbar: NavToolbar
|
||||
internal lateinit var bottomBar: NavBottomBar
|
||||
|
||||
private var drawer: Drawer? = null
|
||||
private var drawerView: View? = null
|
||||
private var accountHeader: AccountHeader? = null
|
||||
private var miniDrawer: MiniDrawer? = null
|
||||
private var miniDrawerView: View? = null
|
||||
private lateinit var drawer: MaterialDrawerSliderView
|
||||
private lateinit var accountHeader: AccountHeaderView
|
||||
private lateinit var miniDrawer: MiniDrawerSliderView
|
||||
|
||||
private var drawerMode: Int = DRAWER_MODE_NORMAL
|
||||
private var selection: Int = -1
|
||||
@ -77,118 +80,118 @@ class NavDrawer(
|
||||
getColorFromAttr(context, R.attr.colorOnError)
|
||||
)*/
|
||||
|
||||
badgeStyle = BadgeStyle()
|
||||
.withTextColor(Color.WHITE)
|
||||
.withColorRes(R.color.md_red_700)
|
||||
|
||||
val drawerBuilder = DrawerBuilder()
|
||||
.withActivity(activity)
|
||||
.withDrawerLayout(R.layout.material_drawer_fits_not)
|
||||
.withRootView(drawerContainer)
|
||||
.withFullscreen(true)
|
||||
.withTranslucentStatusBar(false)
|
||||
.withTranslucentNavigationBar(true)
|
||||
.withTranslucentNavigationBarProgrammatically(false)
|
||||
.withToolbar(bottomBar)
|
||||
.withDisplayBelowStatusBar(true)
|
||||
.withActionBarDrawerToggleAnimated(true)
|
||||
.withGenerateMiniDrawer(true /* if it is not showing on screen, clicking items throws an exception */)
|
||||
.withOnDrawerListener(object : Drawer.OnDrawerListener {
|
||||
override fun onDrawerSlide(drawerView: View, slideOffset: Float) {}
|
||||
override fun onDrawerOpened(drawerView: View) {
|
||||
drawerOpenedListener?.invoke()
|
||||
}
|
||||
override fun onDrawerClosed(drawerView: View) {
|
||||
drawerClosedListener?.invoke()
|
||||
profileSelectionClose()
|
||||
}
|
||||
})
|
||||
.withOnDrawerItemClickListener { _, position, drawerItem ->
|
||||
if (drawerItem.identifier.toInt() == selection) {
|
||||
return@withOnDrawerItemClickListener false
|
||||
}
|
||||
when (drawerItemSelectedListener?.invoke(drawerItem.identifier.toInt(), position, drawerItem)) {
|
||||
true -> {
|
||||
when {
|
||||
!drawerItem.isSelectable -> {
|
||||
setSelection(selection, false)
|
||||
return@withOnDrawerItemClickListener false
|
||||
}
|
||||
drawerItem is DrawerPrimaryItem -> toolbar.title = drawerItem.appTitle ?: drawerItem.name?.text ?: ""
|
||||
drawerItem is BaseDrawerItem<*, *> -> toolbar.title = drawerItem.name?.text ?: ""
|
||||
}
|
||||
setSelection(drawerItem.identifier.toInt(), false)
|
||||
return@withOnDrawerItemClickListener false
|
||||
}
|
||||
false -> {
|
||||
setSelection(selection, false)
|
||||
return@withOnDrawerItemClickListener true
|
||||
}
|
||||
else -> {
|
||||
return@withOnDrawerItemClickListener false
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.withOnDrawerItemLongClickListener { _, position, drawerItem ->
|
||||
drawerItemLongClickListener?.invoke(drawerItem.identifier.toInt(), position, drawerItem) ?: true
|
||||
}
|
||||
|
||||
|
||||
val accountHeaderBuilder = AccountHeaderBuilder()
|
||||
.withActivity(activity)
|
||||
.withTranslucentStatusBar(true)
|
||||
.withOnAccountHeaderListener { view, profile, current ->
|
||||
if (profile is ProfileSettingDrawerItem) {
|
||||
return@withOnAccountHeaderListener drawerProfileSettingClickListener?.invoke(profile.identifier.toInt(), view) ?: false
|
||||
}
|
||||
updateBadges()
|
||||
if (current) {
|
||||
profileSelectionClose()
|
||||
close()
|
||||
return@withOnAccountHeaderListener true
|
||||
}
|
||||
drawerProfileSelectedListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
}
|
||||
.withOnAccountHeaderItemLongClickListener { view, profile, current ->
|
||||
if (profile is ProfileSettingDrawerItem) {
|
||||
return@withOnAccountHeaderItemLongClickListener drawerProfileSettingLongClickListener?.invoke(profile.identifier.toInt(), view) ?: true
|
||||
}
|
||||
drawerProfileLongClickListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
}
|
||||
.withOnAccountHeaderProfileImageListener(
|
||||
onClick = { view, profile, current ->
|
||||
drawerProfileImageClickListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
},
|
||||
onLongClick = { view, profile, current ->
|
||||
drawerProfileImageLongClickListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
}
|
||||
)
|
||||
.withHeaderBackground(R.drawable.header)
|
||||
.withTextColor(ContextCompat.getColor(context, R.color.material_drawer_dark_primary_text))
|
||||
|
||||
accountHeader = accountHeaderBuilder.build()
|
||||
drawerBuilder.withAccountHeader(accountHeader!!)
|
||||
drawer = drawerBuilder.build()
|
||||
|
||||
drawerView = drawer?.slider
|
||||
|
||||
miniDrawer = drawer?.miniDrawer
|
||||
miniDrawer?.withOnMiniDrawerItemClickListener { _, _, _, type ->
|
||||
if (type == MiniDrawer.PROFILE) {
|
||||
profileSelectionOpen()
|
||||
open()
|
||||
return@withOnMiniDrawerItemClickListener true
|
||||
}
|
||||
return@withOnMiniDrawerItemClickListener false
|
||||
badgeStyle = BadgeStyle().apply {
|
||||
textColor = ColorHolder.fromColor(Color.WHITE)
|
||||
color = ColorHolder.fromColor(0xffd32f2f.toInt())
|
||||
}
|
||||
|
||||
drawerLayout.addDrawerListener(object : DrawerLayout.DrawerListener {
|
||||
override fun onDrawerStateChanged(newState: Int) {}
|
||||
override fun onDrawerSlide(drawerView: View, slideOffset: Float) {}
|
||||
override fun onDrawerClosed(drawerView: View) {
|
||||
drawerClosedListener?.invoke()
|
||||
profileSelectionClose()
|
||||
}
|
||||
override fun onDrawerOpened(drawerView: View) {
|
||||
drawerOpenedListener?.invoke()
|
||||
}
|
||||
})
|
||||
|
||||
accountHeader = AccountHeaderView(context).apply {
|
||||
headerBackground = ImageHolder(R.drawable.header)
|
||||
displayBadgesOnSmallProfileImages = true
|
||||
|
||||
onAccountHeaderListener = { view, profile, current ->
|
||||
if (profile is ProfileSettingDrawerItem) {
|
||||
drawerProfileSettingClickListener?.invoke(profile.identifier.toInt(), view) ?: false
|
||||
}
|
||||
else {
|
||||
updateBadges()
|
||||
if (current) {
|
||||
close()
|
||||
profileSelectionClose()
|
||||
true
|
||||
}
|
||||
else {
|
||||
(drawerProfileSelectedListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false).also {
|
||||
setToolbarProfileImage(profileList.singleOrNull { it.id == profile.identifier.toInt() })
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
onAccountHeaderItemLongClickListener = { view, profile, current ->
|
||||
if (profile is ProfileSettingDrawerItem) {
|
||||
drawerProfileSettingLongClickListener?.invoke(profile.identifier.toInt(), view) ?: true
|
||||
}
|
||||
else {
|
||||
drawerProfileLongClickListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
}
|
||||
}
|
||||
|
||||
onAccountHeaderProfileImageListener = { view, profile, current ->
|
||||
drawerProfileImageClickListener?.invoke(profile.identifier.toInt(), profile, current, view) ?: false
|
||||
}
|
||||
//.withTextColor(ContextCompat.getColor(context, R.color.material_drawer_dark_primary_text))
|
||||
}
|
||||
|
||||
drawer = MaterialDrawerSliderView(context).apply {
|
||||
accountHeader = this@NavDrawer.accountHeader
|
||||
itemAnimator = AlphaCrossFadeAnimator()
|
||||
//hasStableIds = true
|
||||
|
||||
onDrawerItemClickListener = { _, drawerItem, position ->
|
||||
if (drawerItem.identifier.toInt() == selection) {
|
||||
false
|
||||
}
|
||||
else {
|
||||
val consumed = drawerItemSelectedListener?.invoke(drawerItem.identifier.toInt(), position, drawerItem)
|
||||
if (consumed == false || !drawerItem.isSelectable) {
|
||||
setSelection(selection, false)
|
||||
consumed == false
|
||||
}
|
||||
else if (consumed == true) {
|
||||
when (drawerItem) {
|
||||
is DrawerPrimaryItem -> toolbar.title = drawerItem.appTitle ?: drawerItem.name?.getText(context) ?: ""
|
||||
is BaseDrawerItem<*, *> -> toolbar.title = drawerItem.name?.getText(context) ?: ""
|
||||
}
|
||||
false
|
||||
}
|
||||
else {
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
onDrawerItemLongClickListener = { _, drawerItem, position ->
|
||||
drawerItemLongClickListener?.invoke(drawerItem.identifier.toInt(), position, drawerItem) ?: true
|
||||
}
|
||||
}
|
||||
|
||||
miniDrawer = MiniDrawerSliderView(context).apply {
|
||||
drawer = this@NavDrawer.drawer
|
||||
includeSecondaryDrawerItems = false
|
||||
try {
|
||||
this::class.java.getDeclaredField("onMiniDrawerItemClickListener").let {
|
||||
it.isAccessible = true
|
||||
it.set(this, { v: View?, position: Int, item: IDrawerItem<*>, type: Int ->
|
||||
if (item is MiniProfileDrawerItem) {
|
||||
profileSelectionOpen()
|
||||
open()
|
||||
true
|
||||
} else false
|
||||
})
|
||||
}
|
||||
} catch (_: Exception) { }
|
||||
}
|
||||
|
||||
// TODO 2019-08-27 build miniDrawerView only if needed
|
||||
// building in decideDrawerMode causes an exception when clicking drawer items
|
||||
// also update method updateMiniDrawer...
|
||||
miniDrawerView = miniDrawer?.build(context)
|
||||
updateMiniDrawer()
|
||||
|
||||
toolbar.profileImageClickListener = {
|
||||
profileSelectionOpen()
|
||||
open()
|
||||
}
|
||||
|
||||
val configuration = context.resources.configuration
|
||||
decideDrawerMode(
|
||||
configuration.orientation,
|
||||
@ -207,59 +210,65 @@ class NavDrawer(
|
||||
appendItem(item)
|
||||
}
|
||||
fun appendItem(item: IDrawerItem<*>) {
|
||||
drawer?.addItem(item)
|
||||
drawer.addItems(item)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun appendItems(vararg items: IDrawerItem<*>) {
|
||||
drawer?.addItems(*items)
|
||||
drawer.addItems(*items)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun prependItem(item: IDrawerItem<*>) {
|
||||
drawer?.addItemAtPosition(item, 0)
|
||||
drawer.addItemAtPosition(0, item)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun prependItems(vararg items: IDrawerItem<*>) {
|
||||
drawer?.addItemsAtPosition(0, *items)
|
||||
drawer.addItemsAtPosition(0, *items)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun addItemAt(index: Int, item: IDrawerItem<*>) {
|
||||
drawer?.addItemAtPosition(item, index)
|
||||
drawer.addItemAtPosition(index, item)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun addItemsAt(index: Int, vararg items: IDrawerItem<*>) {
|
||||
drawer?.addItemsAtPosition(index, *items)
|
||||
drawer.addItemsAtPosition(index, *items)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun removeItemById(id: Int) {
|
||||
drawer?.removeItem(id.toLong())
|
||||
drawer.removeItems(id.toLong())
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun removeItemAt(index: Int) {
|
||||
drawer?.removeItemByPosition(index)
|
||||
drawer.removeItemByPosition(index)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
fun removeAllItems() {
|
||||
drawer?.removeAllItems()
|
||||
drawer.removeAllItems()
|
||||
updateMiniDrawer()
|
||||
}
|
||||
|
||||
fun getItemById(id: Int, run: (it: IDrawerItem<*>?) -> Unit) {
|
||||
drawer?.getDrawerItem(id.toLong()).also {
|
||||
drawer.getDrawerItem(id.toLong()).also {
|
||||
run(it)
|
||||
if (it != null)
|
||||
drawer?.updateItem(it)
|
||||
drawer.updateItem(it)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
}
|
||||
fun getItemByIndex(index: Int, run: (it: IDrawerItem<*>?) -> Unit) {
|
||||
drawer?.drawerItems?.getOrNull(index).also {
|
||||
drawer.itemAdapter.itemList.get(index).also {
|
||||
run(it)
|
||||
if (it != null)
|
||||
drawer?.updateItem(it)
|
||||
drawer.updateItem(it)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
}
|
||||
|
||||
fun setItems(vararg items: IDrawerItem<*>) {
|
||||
drawer.removeAllItems()
|
||||
drawer.addItems(*items)
|
||||
updateMiniDrawer()
|
||||
}
|
||||
|
||||
/* _____ _ _ _ _ _
|
||||
| __ \ (_) | | | | | | | |
|
||||
| |__) | __ ___ ____ _| |_ ___ _ __ ___ ___| |_| |__ ___ __| |___
|
||||
@ -267,55 +276,81 @@ class NavDrawer(
|
||||
| | | | | |\ V / (_| | || __/ | | | | | | __/ |_| | | | (_) | (_| \__ \
|
||||
|_| |_| |_| \_/ \__,_|\__\___| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|__*/
|
||||
private fun drawerSetDragMargin(size: Float) {
|
||||
val mDrawerLayout = drawer?.drawerLayout
|
||||
val mDragger = mDrawerLayout?.javaClass?.getDeclaredField(
|
||||
"mLeftDragger"
|
||||
)//mRightDragger for right obviously
|
||||
mDragger?.isAccessible = true
|
||||
val draggerObj = mDragger?.get(mDrawerLayout) as ViewDragHelper?
|
||||
try {
|
||||
val mDrawerLayout = drawerLayout
|
||||
val mDragger = mDrawerLayout::class.java.getDeclaredField(
|
||||
"mLeftDragger"
|
||||
)
|
||||
mDragger.isAccessible = true
|
||||
val draggerObj = mDragger.get(mDrawerLayout) as ViewDragHelper?
|
||||
draggerObj?.edgeSize = size.toInt()
|
||||
|
||||
val mEdgeSize = draggerObj?.javaClass?.getDeclaredField(
|
||||
"mEdgeSize"
|
||||
)
|
||||
mEdgeSize?.isAccessible = true
|
||||
|
||||
mEdgeSize?.setInt(
|
||||
draggerObj,
|
||||
size.toInt()
|
||||
) //optimal value as for me, you may set any constant in dp
|
||||
// update for SDK >= 29 (Android 10)
|
||||
val useSystemInsets = mDrawerLayout::class.java.getDeclaredField(
|
||||
"sEdgeSizeUsingSystemGestureInsets"
|
||||
)
|
||||
useSystemInsets.isAccessible = true
|
||||
useSystemInsets.set(null, false)
|
||||
}
|
||||
catch (e: Exception) {
|
||||
e.printStackTrace()
|
||||
Toast.makeText(context, "Oops, proguard works", Toast.LENGTH_SHORT).show()
|
||||
}
|
||||
}
|
||||
|
||||
var miniDrawerVisiblePortrait: Boolean? = null
|
||||
set(value) {
|
||||
field = value
|
||||
val configuration = context.resources.configuration
|
||||
decideDrawerMode(
|
||||
configuration.orientation,
|
||||
configuration.screenWidthDp,
|
||||
configuration.screenHeightDp
|
||||
)
|
||||
}
|
||||
var miniDrawerVisibleLandscape: Boolean? = null
|
||||
set(value) {
|
||||
field = value
|
||||
val configuration = context.resources.configuration
|
||||
decideDrawerMode(
|
||||
configuration.orientation,
|
||||
configuration.screenWidthDp,
|
||||
configuration.screenHeightDp
|
||||
)
|
||||
}
|
||||
|
||||
internal fun decideDrawerMode(orientation: Int, widthDp: Int, heightDp: Int) {
|
||||
val drawerLayoutParams = DrawerLayout.LayoutParams(WRAP_CONTENT, MATCH_PARENT).apply {
|
||||
gravity = Gravity.START
|
||||
}
|
||||
val fixedLayoutParams = FrameLayout.LayoutParams(UIUtils.convertDpToPixel(300f, context).toInt(), MATCH_PARENT)
|
||||
|
||||
Log.d("NavLib", "Deciding drawer mode:")
|
||||
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||
if (fixedDrawerContainer.childCount > 0) {
|
||||
fixedDrawerContainer.removeAllViews()
|
||||
}
|
||||
Log.d("NavLib", "- fixed container disabled")
|
||||
drawer?.drawerLayout?.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED)
|
||||
if (drawer?.drawerLayout?.indexOfChild(drawerView) == -1) {
|
||||
drawer?.drawerLayout?.addView(drawerView)
|
||||
}
|
||||
Log.d("NavLib", "- slider enabled")
|
||||
|
||||
if (miniDrawerContainerLandscape.childCount > 0) {
|
||||
miniDrawerContainerLandscape.removeAllViews()
|
||||
if (drawerContainerLandscape.childCount > 0) {
|
||||
drawerContainerLandscape.removeAllViews()
|
||||
}
|
||||
Log.d("NavLib", "- mini drawer land disabled")
|
||||
|
||||
if (widthDp >= 480) {
|
||||
if (miniDrawerView == null)
|
||||
miniDrawerView = miniDrawer?.build(context)
|
||||
if (miniDrawerContainerPortrait.indexOfChild(miniDrawerView) == -1)
|
||||
miniDrawerContainerPortrait.addView(miniDrawerView)
|
||||
if (drawerLayout.indexOfChild(drawer) == -1) {
|
||||
drawerLayout.addView(drawer, drawerLayoutParams)
|
||||
}
|
||||
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED)
|
||||
Log.d("NavLib", "- slider enabled")
|
||||
|
||||
if ((widthDp >= 480 && miniDrawerVisiblePortrait != false) || miniDrawerVisiblePortrait == true) {
|
||||
if (drawerContainerPortrait.indexOfChild(miniDrawer) == -1)
|
||||
drawerContainerPortrait.addView(miniDrawer)
|
||||
Log.d("NavLib", "- mini drawer port enabled")
|
||||
drawerSetDragMargin(72 * resources.displayMetrics.density)
|
||||
drawerMode = DRAWER_MODE_MINI
|
||||
updateMiniDrawer()
|
||||
}
|
||||
else {
|
||||
if (miniDrawerContainerPortrait.childCount > 0) {
|
||||
miniDrawerContainerPortrait.removeAllViews()
|
||||
if (drawerContainerPortrait.childCount > 0) {
|
||||
drawerContainerPortrait.removeAllViews()
|
||||
}
|
||||
Log.d("NavLib", "- mini drawer port disabled")
|
||||
drawerSetDragMargin(20 * resources.displayMetrics.density)
|
||||
@ -323,66 +358,67 @@ class NavDrawer(
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (miniDrawerContainerPortrait.childCount > 0) {
|
||||
miniDrawerContainerPortrait.removeAllViews()
|
||||
if (drawerContainerPortrait.childCount > 0) {
|
||||
drawerContainerPortrait.removeAllViews()
|
||||
}
|
||||
Log.d("NavLib", "- mini drawer port disabled")
|
||||
|
||||
if (widthDp in 480 until 9000) {
|
||||
if (miniDrawerView == null)
|
||||
miniDrawerView = miniDrawer?.build(context)
|
||||
if (miniDrawerContainerLandscape.indexOfChild(miniDrawerView) == -1)
|
||||
miniDrawerContainerLandscape.addView(miniDrawerView)
|
||||
if ((widthDp in 480 until 900 && miniDrawerVisibleLandscape != false) || miniDrawerVisibleLandscape == true) {
|
||||
if (drawerContainerLandscape.indexOfChild(miniDrawer) == -1)
|
||||
drawerContainerLandscape.addView(miniDrawer)
|
||||
Log.d("NavLib", "- mini drawer land enabled")
|
||||
drawerSetDragMargin(72 * resources.displayMetrics.density)
|
||||
drawerMode = DRAWER_MODE_MINI
|
||||
updateMiniDrawer()
|
||||
}
|
||||
else {
|
||||
if (miniDrawerContainerLandscape.childCount > 0) {
|
||||
miniDrawerContainerLandscape.removeAllViews()
|
||||
if (drawerContainerLandscape.childCount > 0) {
|
||||
drawerContainerLandscape.removeAllViews()
|
||||
}
|
||||
Log.d("NavLib", "- mini drawer land disabled")
|
||||
drawerSetDragMargin(20 * resources.displayMetrics.density)
|
||||
drawerMode = DRAWER_MODE_NORMAL
|
||||
}
|
||||
if (widthDp >= 9000) {
|
||||
if (widthDp >= 900) {
|
||||
// screen is big enough to show fixed drawer
|
||||
if (drawer?.drawerLayout?.indexOfChild(drawerView) != -1) {
|
||||
if (drawerLayout.indexOfChild(drawer) != -1) {
|
||||
// remove from slider
|
||||
drawer?.drawerLayout?.removeView(drawerView)
|
||||
drawerLayout.removeView(drawer)
|
||||
}
|
||||
// lock the slider
|
||||
drawer?.drawerLayout?.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED)
|
||||
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED)
|
||||
Log.d("NavLib", "- slider disabled")
|
||||
// add to fixed container
|
||||
if (fixedDrawerContainer.indexOfChild(drawerView) == -1)
|
||||
fixedDrawerContainer.addView(drawerView)
|
||||
if (drawerContainerLandscape.indexOfChild(drawer) == -1)
|
||||
drawerContainerLandscape.addView(drawer, fixedLayoutParams)
|
||||
drawer.visibility = View.VISIBLE
|
||||
Log.d("NavLib", "- fixed container enabled")
|
||||
drawerMode = DRAWER_MODE_FIXED
|
||||
}
|
||||
else {
|
||||
// screen is too small for the fixed drawer
|
||||
if (fixedDrawerContainer.childCount > 0) {
|
||||
if (drawerContainerLandscape.indexOfChild(drawer) != -1) {
|
||||
// remove from fixed container
|
||||
fixedDrawerContainer.removeAllViews()
|
||||
drawerContainerLandscape.removeView(drawer)
|
||||
}
|
||||
Log.d("NavLib", "- fixed container disabled")
|
||||
// unlock the slider
|
||||
drawer?.drawerLayout?.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED)
|
||||
if (drawer?.drawerLayout?.indexOfChild(drawerView) == -1) {
|
||||
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED)
|
||||
if (drawerLayout.indexOfChild(drawer) == -1) {
|
||||
// add to slider
|
||||
drawer?.drawerLayout?.addView(drawerView)
|
||||
drawerLayout.addView(drawer, drawerLayoutParams)
|
||||
}
|
||||
Log.d("NavLib", "- slider enabled")
|
||||
}
|
||||
}
|
||||
|
||||
miniDrawerElevation.visibility = if (drawerMode == DRAWER_MODE_MINI || drawerMode == DRAWER_MODE_FIXED) View.VISIBLE else View.GONE
|
||||
}
|
||||
|
||||
private fun updateMiniDrawer() {
|
||||
selection = drawer?.currentSelection?.toInt() ?: -1
|
||||
selection = drawer.selectedItemIdentifier.toInt()
|
||||
//if (drawerMode == DRAWER_MODE_MINI)
|
||||
miniDrawer?.createItems()
|
||||
miniDrawer.createItems()
|
||||
}
|
||||
|
||||
/* _____ _ _ _ _ _ _
|
||||
@ -392,63 +428,68 @@ class NavDrawer(
|
||||
| | | |_| | |_) | | | (__ | | | | | | __/ |_| | | | (_) | (_| \__ \
|
||||
|_| \__,_|_.__/|_|_|\___| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|__*/
|
||||
var isOpen
|
||||
get() = drawer?.isDrawerOpen ?: false || drawerMode == DRAWER_MODE_FIXED
|
||||
get() = drawerLayout.isOpen || drawerMode == DRAWER_MODE_FIXED
|
||||
set(value) {
|
||||
if (drawerMode == DRAWER_MODE_FIXED)
|
||||
return
|
||||
if (value && !isOpen) drawer?.openDrawer() else if (!value && isOpen) drawer?.closeDrawer()
|
||||
if (value && !isOpen) drawerLayout.open() else if (!value && isOpen) drawerLayout.close()
|
||||
}
|
||||
fun open() { isOpen = true }
|
||||
fun close() { isOpen = false }
|
||||
fun toggle() {
|
||||
if (drawer == null)
|
||||
return
|
||||
isOpen = !isOpen
|
||||
}
|
||||
fun toggle() { isOpen = !isOpen }
|
||||
|
||||
var profileSelectionIsOpen
|
||||
get() = accountHeader?.isSelectionListShown == true
|
||||
get() = accountHeader.selectionListShown
|
||||
set(value) {
|
||||
if (value != profileSelectionIsOpen)
|
||||
profileSelectionToggle()
|
||||
}
|
||||
fun profileSelectionOpen() { profileSelectionIsOpen = true }
|
||||
fun profileSelectionClose() { profileSelectionIsOpen = false }
|
||||
fun profileSelectionToggle() {
|
||||
accountHeader?.let {
|
||||
it.toggleSelectionList(it.view.context)
|
||||
}
|
||||
}
|
||||
fun profileSelectionToggle() { accountHeader.selectionListShown = !accountHeader.selectionListShown }
|
||||
|
||||
var drawerOpenedListener: (() -> Unit)? = null
|
||||
var drawerClosedListener: (() -> Unit)? = null
|
||||
var drawerItemSelectedListener: ((id: Int, position: Int, drawerItem: IDrawerItem<*>) -> Boolean)? = null
|
||||
var drawerItemLongClickListener: ((id: Int, position: Int, drawerItem: IDrawerItem<*>) -> Boolean)? = null
|
||||
var drawerProfileSelectedListener: ((id: Int, profile: IProfile<*>, current: Boolean, view: View?) -> Boolean)? = null
|
||||
var drawerProfileLongClickListener: ((id: Int, profile: IProfile<*>, current: Boolean, view: View) -> Boolean)? = null
|
||||
var drawerProfileImageClickListener: ((id: Int, profile: IProfile<*>, current: Boolean, view: View) -> Boolean)? = null
|
||||
var drawerProfileImageLongClickListener: ((id: Int, profile: IProfile<*>, current: Boolean, view: View) -> Boolean)? = null
|
||||
var drawerProfileSelectedListener: ((id: Int, profile: IProfile, current: Boolean, view: View?) -> Boolean)? = null
|
||||
var drawerProfileLongClickListener: ((id: Int, profile: IProfile, current: Boolean, view: View?) -> Boolean)? = null
|
||||
var drawerProfileImageClickListener: ((id: Int, profile: IProfile, current: Boolean, view: View) -> Boolean)? = null
|
||||
var drawerProfileImageLongClickListener: ((id: Int, profile: IProfile, current: Boolean, view: View) -> Boolean)? = null
|
||||
var drawerProfileListEmptyListener: (() -> Unit)? = null
|
||||
var drawerProfileSettingClickListener: ((id: Int, view: View?) -> Boolean)? = null
|
||||
var drawerProfileSettingLongClickListener: ((id: Int, view: View) -> Boolean)? = null
|
||||
var drawerProfileSettingLongClickListener: ((id: Int, view: View?) -> Boolean)? = null
|
||||
|
||||
fun miniDrawerEnabled(): Boolean = drawerMode == DRAWER_MODE_MINI
|
||||
fun fixedDrawerEnabled(): Boolean = drawerMode == DRAWER_MODE_FIXED
|
||||
|
||||
fun setSelection(id: Int, fireOnClick: Boolean = true) {
|
||||
Log.d("NavDebug", "setSelection(id = $id, fireOnClick = $fireOnClick)")
|
||||
// seems that this cannot be open, because the itemAdapter has Profile items
|
||||
// instead of normal Drawer items...
|
||||
profileSelectionClose()
|
||||
selection = id
|
||||
if (drawer?.currentSelection != id.toLong())
|
||||
drawer?.setSelection(id.toLong(), fireOnClick)
|
||||
|
||||
if (drawer.selectedItemIdentifier != id.toLong()) {
|
||||
|
||||
}
|
||||
|
||||
if (drawer.selectedItemIdentifier != id.toLong() || !fireOnClick)
|
||||
drawer.setSelectionAtPosition(drawer.getPosition(id.toLong()), fireOnClick)
|
||||
|
||||
miniDrawer.setSelection(-1L)
|
||||
if (drawerMode == DRAWER_MODE_MINI)
|
||||
miniDrawer?.setSelection(id.toLong())
|
||||
miniDrawer.setSelection(id.toLong())
|
||||
}
|
||||
fun getSelection(): Int = selection
|
||||
|
||||
// TODO 2019-08-27 add methods for Drawable, @DrawableRes
|
||||
fun setAccountHeaderBackground(path: String?) {
|
||||
if (path == null) {
|
||||
accountHeader?.setBackgroundRes(R.drawable.header)
|
||||
accountHeader.headerBackground = ImageHolder(R.drawable.header)
|
||||
return
|
||||
}
|
||||
accountHeader?.setHeaderBackground(ImageHolder(path))
|
||||
accountHeader.headerBackground = ImageHolder(path)
|
||||
}
|
||||
|
||||
/* _____ __ _ _
|
||||
@ -457,55 +498,52 @@ class NavDrawer(
|
||||
| ___/ '__/ _ \| _| | |/ _ \/ __|
|
||||
| | | | | (_) | | | | | __/\__ \
|
||||
|_| |_| \___/|_| |_|_|\___||__*/
|
||||
private var profileList = arrayListOf<IDrawerProfile>()
|
||||
private var profileList: MutableList<IDrawerProfile> = mutableListOf()
|
||||
|
||||
fun addProfileSettings(vararg items: ProfileSettingDrawerItem) {
|
||||
accountHeader?.profiles?.addAll(items)
|
||||
accountHeader.profiles?.addAll(items)
|
||||
}
|
||||
|
||||
private fun updateProfileList() {
|
||||
// remove all profile items
|
||||
accountHeader?.profiles?.filterNot { it is ProfileDrawerItem }
|
||||
val profiles = accountHeader.profiles?.filterNot { it is ProfileDrawerItem } as MutableList<IProfile>?
|
||||
|
||||
if (profileList.isEmpty())
|
||||
drawerProfileListEmptyListener?.invoke()
|
||||
|
||||
profileList.forEachIndexed { index, profile ->
|
||||
val image = if (profile.image != null) {
|
||||
try {
|
||||
ImageHolder(profile.image ?: "")
|
||||
}
|
||||
catch (_: Exception) {
|
||||
ImageHolder(R.drawable.profile4)
|
||||
}
|
||||
}
|
||||
else {
|
||||
ImageHolder(R.drawable.profile4)
|
||||
}
|
||||
val image = profile.getImageHolder(context)
|
||||
ProfileDrawerItem()
|
||||
.withIdentifier(profile.id.toLong())
|
||||
.withName(profile.name)
|
||||
.withEmail(profile.subname)
|
||||
.also { it.icon = image }
|
||||
.withBadgeStyle(badgeStyle)
|
||||
.withNameShown(true)
|
||||
.also { accountHeader?.profiles?.add(index, it) }
|
||||
.also { profiles?.add(index, it) }
|
||||
}
|
||||
|
||||
accountHeader?.profiles = accountHeader?.profiles
|
||||
accountHeader.profiles = profiles
|
||||
|
||||
updateBadges()
|
||||
updateMiniDrawer()
|
||||
}
|
||||
|
||||
fun setProfileList(profiles: ArrayList<IDrawerProfile>) {
|
||||
profileList = profiles
|
||||
fun setProfileList(profiles: MutableList<out IDrawerProfile>) {
|
||||
profileList = profiles as MutableList<IDrawerProfile>
|
||||
updateProfileList()
|
||||
/*profileList.clear()
|
||||
profileList.addAll(profiles)*/
|
||||
}
|
||||
private var currentProfileObj: IDrawerProfile? = null
|
||||
val profileListEmpty: Boolean
|
||||
get() = profileList.isEmpty()
|
||||
var currentProfile: Int
|
||||
get() = accountHeader?.activeProfile?.identifier?.toInt() ?: -1
|
||||
get() = accountHeader.activeProfile?.identifier?.toInt() ?: -1
|
||||
set(value) {
|
||||
accountHeader?.setActiveProfile(value.toLong(), true)
|
||||
Log.d("NavDebug", "currentProfile = $value")
|
||||
accountHeader.setActiveProfile(value.toLong(), false)
|
||||
currentProfileObj = profileList.singleOrNull { it.id == value }
|
||||
setToolbarProfileImage(currentProfileObj)
|
||||
updateBadges()
|
||||
}
|
||||
fun appendProfile(profile: IDrawerProfile) {
|
||||
profileList.add(profile)
|
||||
@ -532,7 +570,7 @@ class NavDrawer(
|
||||
updateProfileList()
|
||||
}
|
||||
fun removeProfileById(id: Int) {
|
||||
profileList.filterNot { it.id == id }
|
||||
profileList = profileList.filterNot { it.id == id }.toMutableList()
|
||||
updateProfileList()
|
||||
}
|
||||
fun removeProfileAt(index: Int) {
|
||||
@ -543,6 +581,9 @@ class NavDrawer(
|
||||
profileList.clear()
|
||||
updateProfileList()
|
||||
}
|
||||
fun removeAllProfileSettings() {
|
||||
accountHeader.profiles = accountHeader.profiles?.filterNot { it is ProfileSettingDrawerItem }?.toMutableList()
|
||||
}
|
||||
|
||||
fun getProfileById(id: Int, run: (it: IDrawerProfile?) -> Unit) {
|
||||
profileList.singleOrNull { it.id == id }.also {
|
||||
@ -557,6 +598,10 @@ class NavDrawer(
|
||||
}
|
||||
}
|
||||
|
||||
private fun setToolbarProfileImage(profile: IDrawerProfile?) {
|
||||
toolbar.profileImage = profile?.getImageDrawable(context)
|
||||
}
|
||||
|
||||
|
||||
/* ____ _
|
||||
| _ \ | |
|
||||
@ -566,21 +611,55 @@ class NavDrawer(
|
||||
|____/ \__,_|\__,_|\__, |\___||___/
|
||||
__/ |
|
||||
|__*/
|
||||
private var unreadCounterList = arrayListOf<IUnreadCounter>()
|
||||
private var unreadCounterList: MutableList<IUnreadCounter> = mutableListOf()
|
||||
private val unreadCounterTypeMap = mutableMapOf<Int, Int>()
|
||||
|
||||
fun updateBadges() {
|
||||
unreadCounterList.map {
|
||||
|
||||
currentProfileObj = profileList.singleOrNull { it.id == currentProfile }
|
||||
|
||||
drawer.itemAdapter.itemList.items.forEachIndexed { index, item ->
|
||||
if (item is Badgeable) {
|
||||
item.badge = null
|
||||
drawer.updateItem(item)
|
||||
}
|
||||
}
|
||||
|
||||
var profileCounters = listOf<IUnreadCounter>()
|
||||
|
||||
accountHeader.profiles?.forEach { profile ->
|
||||
if (profile !is ProfileDrawerItem) return@forEach
|
||||
val counters = unreadCounterList.filter { it.profileId == profile.identifier.toInt() }
|
||||
val count = counters.sumBy { it.count }
|
||||
val badge = when {
|
||||
count == 0 -> null
|
||||
count >= 99 -> StringHolder("99+")
|
||||
else -> StringHolder(count.toString())
|
||||
}
|
||||
if (profile.badge != badge) {
|
||||
profile.badge = badge
|
||||
accountHeader.updateProfile(profile)
|
||||
}
|
||||
|
||||
if (currentProfile == profile.identifier.toInt())
|
||||
profileCounters = counters
|
||||
}
|
||||
|
||||
Log.d("NavDebug", "updateBadges()")
|
||||
profileCounters.map {
|
||||
it.drawerItemId = unreadCounterTypeMap[it.type]
|
||||
}
|
||||
unreadCounterList.forEach {
|
||||
var totalCount = 0
|
||||
profileCounters.forEach {
|
||||
if (it.drawerItemId == null)
|
||||
return@forEach
|
||||
if (it.profileId != currentProfile) {
|
||||
drawer?.updateBadge(it.drawerItemId?.toLong() ?: 0, null)
|
||||
//Log.d("NavDebug", "- Remove badge for ${it.drawerItemId}")
|
||||
//drawer?.updateBadge(it.drawerItemId?.toLong() ?: 0, null)
|
||||
return@forEach
|
||||
}
|
||||
drawer?.updateBadge(
|
||||
Log.d("NavDebug", "- Set badge ${it.count} for ${it.drawerItemId}")
|
||||
drawer.updateBadge(
|
||||
it.drawerItemId?.toLong() ?: 0,
|
||||
when {
|
||||
it.count == 0 -> null
|
||||
@ -588,12 +667,40 @@ class NavDrawer(
|
||||
else -> StringHolder(it.count.toString())
|
||||
}
|
||||
)
|
||||
totalCount += it.count
|
||||
}
|
||||
updateMiniDrawer()
|
||||
|
||||
if (bottomBar.navigationIcon is LayerDrawable) {
|
||||
(bottomBar.navigationIcon as LayerDrawable?)?.apply {
|
||||
findDrawableByLayerId(R.id.ic_badge)
|
||||
.takeIf { it is BadgeDrawable }
|
||||
?.also { badge ->
|
||||
(badge as BadgeDrawable).setCount(totalCount.toString())
|
||||
mutate()
|
||||
setDrawableByLayerId(R.id.ic_badge, badge)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (totalCount == 0) {
|
||||
toolbar.subtitle = resources.getString(
|
||||
toolbar.subtitleFormat ?: return,
|
||||
currentProfileObj?.name ?: ""
|
||||
)
|
||||
}
|
||||
else {
|
||||
toolbar.subtitle = resources.getQuantityString(
|
||||
toolbar.subtitleFormatWithUnread ?: toolbar.subtitleFormat ?: return,
|
||||
totalCount,
|
||||
currentProfileObj?.name ?: "",
|
||||
totalCount
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fun setUnreadCounterList(unreadCounterList: ArrayList<IUnreadCounter>) {
|
||||
this.unreadCounterList = unreadCounterList
|
||||
fun setUnreadCounterList(unreadCounterList: MutableList<out IUnreadCounter>) {
|
||||
this.unreadCounterList = unreadCounterList as MutableList<IUnreadCounter>
|
||||
updateBadges()
|
||||
}
|
||||
|
||||
@ -601,16 +708,23 @@ class NavDrawer(
|
||||
unreadCounterTypeMap[type] = drawerItem
|
||||
}
|
||||
|
||||
data class UnreadCounter(
|
||||
override var profileId: Int,
|
||||
override var type: Int,
|
||||
override var drawerItemId: Int?,
|
||||
override var count: Int
|
||||
) : IUnreadCounter
|
||||
|
||||
fun setUnreadCount(profileId: Int, type: Int, count: Int) {
|
||||
val item = unreadCounterList.singleOrNull {
|
||||
it.type == type && it.profileId == profileId
|
||||
}
|
||||
if (item != null) {
|
||||
item.count = count
|
||||
updateBadges()
|
||||
}
|
||||
else {
|
||||
unreadCounterList.add(IUnreadCounter(profileId, type, null, count))
|
||||
unreadCounterList.add(UnreadCounter(profileId, type, null, count))
|
||||
}
|
||||
updateBadges()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,4 +8,11 @@ class DrawerPrimaryItem : PrimaryDrawerItem() {
|
||||
this.appTitle = appTitle
|
||||
return this
|
||||
}
|
||||
}
|
||||
|
||||
fun PrimaryDrawerItem.withAppTitle(appTitle: String?): PrimaryDrawerItem {
|
||||
if (this !is DrawerPrimaryItem)
|
||||
return this
|
||||
this.appTitle = appTitle
|
||||
return this
|
||||
}
|
BIN
navlib/src/main/res/drawable/header.png
Normal file
BIN
navlib/src/main/res/drawable/header.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 91 KiB |
10
navlib/src/main/res/drawable/ic_menu_badge.xml
Normal file
10
navlib/src/main/res/drawable/ic_menu_badge.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/ic_menu"
|
||||
android:drawable="@drawable/placeholder"
|
||||
android:gravity="center" />
|
||||
<item
|
||||
android:id="@+id/ic_badge"
|
||||
android:drawable="@drawable/placeholder" />
|
||||
</layer-list>
|
3
navlib/src/main/res/drawable/placeholder.xml
Normal file
3
navlib/src/main/res/drawable/placeholder.xml
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
</shape>
|
15
navlib/src/main/res/drawable/profile.xml
Normal file
15
navlib/src/main/res/drawable/profile.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="135.5"
|
||||
android:viewportHeight="135.5">
|
||||
<path
|
||||
android:pathData="M0,0h135.5L135.5,135.5L0,135.5z"
|
||||
android:fillColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M41.674,55.89a28.412,26.387 85.529,1 0,52.798 0.379a28.412,26.387 85.529,1 0,-52.798 -0.379z"
|
||||
android:fillColor="#b0ffffff"/>
|
||||
<path
|
||||
android:pathData="M121,133.2a53.3,39 0,0 1,-50.9 38.9A53.3,39 0,0 1,14.8 136.5a53.3,39 0,0 1,46 -42,53.3 39,0 0,1 59.5,32"
|
||||
android:fillColor="#b0ffffff"/>
|
||||
</vector>
|
@ -32,8 +32,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/bottom_sheet_background"
|
||||
android:paddingStart="8dp"
|
||||
android:paddingEnd="8dp"
|
||||
android:paddingHorizontal="8dp"
|
||||
tools:paddingBottom="48dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
@ -99,7 +98,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:overScrollMode="never"
|
||||
android:minHeight="50dp"
|
||||
tools:minHeight="50dp"
|
||||
tools:listitem="@layout/nav_bs_item_primary"/>
|
||||
|
||||
</LinearLayout>
|
||||
@ -107,4 +106,4 @@
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
</layout>
|
||||
</layout>
|
||||
|
@ -3,20 +3,47 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/item_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="48dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:gravity="center"
|
||||
android:background="?selectableItemBackground"
|
||||
android:orientation="vertical">
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
android:layout_marginLeft="16dp"
|
||||
<ImageView
|
||||
android:id="@+id/item_icon"
|
||||
android:layout_width="24dp"
|
||||
android:layout_height="24dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:drawablePadding="16dp"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:gravity="start|center_vertical"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
||||
android:textSize="14sp"
|
||||
tools:text="Search activity" />
|
||||
tools:srcCompat="@drawable/ic_android" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:gravity="start|center_vertical"
|
||||
android:textAppearance="@style/NavView.TextView"
|
||||
android:textSize="14sp"
|
||||
tools:text="Search activity" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_description"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="sans-serif"
|
||||
android:gravity="center_vertical|start"
|
||||
android:lines="1"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/NavView.TextView.Small"
|
||||
android:textSize="12sp"
|
||||
tools:text="Some drawer text" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
@ -7,8 +7,8 @@
|
||||
android:orientation="horizontal"
|
||||
tools:parentTag="FrameLayout">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/nv_drawerContainer"
|
||||
<androidx.drawerlayout.widget.DrawerLayout
|
||||
android:id="@+id/nv_drawerLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
@ -37,23 +37,42 @@
|
||||
tools:paddingBottom="48dp">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/nv_miniDrawerContainerLandscape"
|
||||
android:id="@+id/nv_drawerContainerLandscape"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
tools:background="#2196f3" /><!--tools:layout_width="72dp"-->
|
||||
android:background="@color/colorSurface_4dp"
|
||||
tools:layout_width="72dp" />
|
||||
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
android:id="@+id/nv_coordinator"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<pl.szczodrzynski.navlib.NavToolbar
|
||||
android:id="@+id/nv_toolbar"
|
||||
style="@style/Widget.MaterialComponents.Toolbar.Surface"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?attr/actionBarSize"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?actionBarBackground"
|
||||
android:clipToPadding="false"
|
||||
android:elevation="4dp"
|
||||
android:minHeight="?attr/actionBarSize"
|
||||
app:title="@string/app_name"
|
||||
tools:targetApi="lollipop" />
|
||||
app:titleMargin="0dp"
|
||||
tools:targetApi="lollipop">
|
||||
|
||||
<com.mikepenz.materialdrawer.view.BezelImageView
|
||||
android:id="@+id/nv_toolbar_image"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_gravity="center_vertical|end"
|
||||
android:layout_marginEnd="13dp"
|
||||
android:layout_marginRight="13dp"
|
||||
android:scaleType="centerCrop"
|
||||
app:materialDrawerSelectorOnPress="#80ffffff"
|
||||
tools:src="@tools:sample/backgrounds/scenic" />
|
||||
|
||||
</pl.szczodrzynski.navlib.NavToolbar>
|
||||
|
||||
<View
|
||||
android:id="@+id/nv_toolbarElevation"
|
||||
@ -76,7 +95,8 @@
|
||||
android:id="@+id/nv_miniDrawerContainerPortrait"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
tools:background="#ffb300" /><!--tools:layout_width="72dp"-->
|
||||
android:background="@color/colorSurface_4dp"
|
||||
tools:layout_width="72dp" /><!--tools:layout_width="72dp"-->
|
||||
|
||||
<View
|
||||
android:id="@+id/nv_miniDrawerElevation"
|
||||
@ -92,10 +112,34 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:gravity="start"
|
||||
android:visibility="visible"
|
||||
app:fabAlignmentMode="center"
|
||||
app:fabAnimationMode="scale" />
|
||||
|
||||
<com.balysv.materialripple.MaterialRippleLayout
|
||||
android:id="@+id/ripple"
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="?actionBarSize"
|
||||
android:layout_gravity="bottom|end"
|
||||
android:enabled="false"
|
||||
android:focusableInTouchMode="false"
|
||||
android:focusable="false"
|
||||
app:mrl_rippleFadeDuration="200"
|
||||
app:mrl_rippleDuration="350"
|
||||
app:mrl_rippleColor="?colorOnBackground"
|
||||
app:mrl_rippleAlpha="0.3">
|
||||
|
||||
<View
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:enabled="false"
|
||||
android:focusableInTouchMode="false"
|
||||
android:focusable="false"
|
||||
android:visibility="invisible"/>
|
||||
|
||||
</com.balysv.materialripple.MaterialRippleLayout>
|
||||
|
||||
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||
android:id="@+id/nv_extendedFloatingActionButton"
|
||||
android:layout_width="wrap_content"
|
||||
@ -136,13 +180,7 @@
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/nv_fixedDrawerContainer"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
tools:background="#4caf50"/><!--tools:layout_width="300dp"-->
|
||||
|
||||
</LinearLayout>
|
||||
</androidx.drawerlayout.widget.DrawerLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/nv_statusBarDarker"
|
||||
@ -170,4 +208,4 @@
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
|
||||
</merge>
|
||||
</merge>
|
||||
|
@ -6,4 +6,14 @@
|
||||
<color name="background_light">#ffffff</color>
|
||||
<color name="background_dark">#242424</color>
|
||||
<color name="background_black">#000000</color>
|
||||
|
||||
<color name="colorSurface_1dp">#0dffffff</color>
|
||||
<color name="colorSurface_2dp">#12ffffff</color>
|
||||
<color name="colorSurface_3dp">#14ffffff</color>
|
||||
<color name="colorSurface_4dp">#17ffffff</color>
|
||||
<color name="colorSurface_6dp">#1cffffff</color>
|
||||
<color name="colorSurface_8dp">#1fffffff</color>
|
||||
<color name="colorSurface_12dp">#24ffffff</color>
|
||||
<color name="colorSurface_16dp">#26ffffff</color>
|
||||
<color name="colorSurface_24dp">#29ffffff</color>
|
||||
</resources>
|
4
navlib/src/main/res/values/dimens.xml
Normal file
4
navlib/src/main/res/values/dimens.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<dimen name="badge_text_size">10sp</dimen>
|
||||
</resources>
|
@ -1,3 +1,4 @@
|
||||
<resources>
|
||||
<string name="app_name">NavLib</string>
|
||||
<string name="toolbar_subtitle">%1$s</string>
|
||||
</resources>
|
||||
|
@ -12,27 +12,41 @@
|
||||
<item name="backgroundTint">?colorFab</item>
|
||||
<item name="android:textColor">?colorOnFab</item>
|
||||
</style>
|
||||
<!-- default body text -->
|
||||
<style name="NavView.TextView" parent="Widget.MaterialComponents.TextView">
|
||||
<item name="android:textAppearance">?attr/textAppearanceBody2</item>
|
||||
|
||||
<style name="NavView.TextView">
|
||||
<item name="android:textAppearance">@style/NavView.TextView.Normal</item>
|
||||
</style>
|
||||
<!-- title text 20sp, primary, medium -->
|
||||
<!-- subtitle text 16sp, primary, medium -->
|
||||
<!-- large body text 22sp, primary, regular -->
|
||||
<!-- medium body text 18sp, primary, regular -->
|
||||
<!-- normal(default) body text 14sp, primary, regular -->
|
||||
<!-- small body text 14sp, secondary, medium -->
|
||||
<!-- helper body text 14sp, secondary, regular -->
|
||||
<style name="NavView.TextView.Normal" parent="Widget.MaterialComponents.TextView">
|
||||
<item name="android:textAppearance">?attr/textAppearanceBody2</item>
|
||||
<item name="android:textSize">14sp</item>
|
||||
<item name="android:textColor">?android:textColorPrimary</item>
|
||||
</style>
|
||||
<!-- title text -->
|
||||
<style name="NavView.TextView.Title" parent="TextAppearance.AppCompat.Title">
|
||||
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
||||
</style>
|
||||
<!-- subtitle text, smaller than medium -->
|
||||
<style name="NavView.TextView.Subtitle" parent="TextAppearance.AppCompat.Subhead">
|
||||
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
||||
<item name="android:textSize">16sp</item>
|
||||
<item name="android:fontFamily">sans-serif-medium</item>
|
||||
</style>
|
||||
<!-- large body text -->
|
||||
<style name="NavView.TextView.Large" parent="TextAppearance.AppCompat.Large">
|
||||
</style>
|
||||
<!-- medium body text -->
|
||||
<style name="NavView.TextView.Medium" parent="TextAppearance.AppCompat.Medium">
|
||||
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
||||
</style>
|
||||
<!-- small (helper) body text -->
|
||||
<style name="NavView.TextView.Small" parent="TextAppearance.AppCompat.Small">
|
||||
<item name="android:textSize">14sp</item>
|
||||
<item name="android:fontFamily">sans-serif-medium</item>
|
||||
</style>
|
||||
<style name="NavView.TextView.Helper" parent="TextAppearance.AppCompat.Small">
|
||||
<item name="android:textSize">14sp</item>
|
||||
</style>
|
||||
|
||||
|
||||
@ -48,8 +62,9 @@
|
||||
<item name="colorSecondaryVariant">#018786</item>
|
||||
|
||||
<!-- window colors -->
|
||||
<item name="android:colorBackground">@color/background_light</item>
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
<!-- a descendant theme should specify those two as background colors -->
|
||||
<item name="android:colorBackground">@color/background_light</item>
|
||||
<item name="colorSurface">#ffffff</item>
|
||||
|
||||
<!-- FAB styling -->
|
||||
@ -58,10 +73,12 @@
|
||||
<item name="colorOnFab">?colorOnSecondary</item>
|
||||
|
||||
<!-- text colors -->
|
||||
<item name="android:textColorPrimary">#db000000</item>
|
||||
<item name="android:textColorSecondary">#99000000</item>
|
||||
<item name="colorOnPrimary">#ffffff</item>
|
||||
<item name="colorOnSecondary">#ffffff</item>
|
||||
<item name="colorOnBackground">#000000</item>
|
||||
<item name="colorOnSurface">#000000</item>
|
||||
<item name="colorOnBackground">?android:textColorPrimary</item>
|
||||
<item name="colorOnSurface">?android:textColorPrimary</item>
|
||||
|
||||
<item name="elevationOverlayColor">#ffffff</item>
|
||||
|
||||
@ -78,16 +95,9 @@
|
||||
<item name="android:textViewStyle">@style/NavView.TextView</item>
|
||||
|
||||
<!-- drawer & bottom sheet styling -->
|
||||
<item name="material_drawer_background">?android:colorBackground</item>
|
||||
<item name="material_drawer_primary_text">#242424</item>
|
||||
<item name="material_drawer_primary_icon">#5F6368</item>
|
||||
<item name="material_drawer_secondary_text">@color/material_drawer_secondary_text</item>
|
||||
<item name="material_drawer_hint_text">@color/material_drawer_hint_text</item>
|
||||
<item name="material_drawer_divider">@color/material_drawer_divider</item>
|
||||
<item name="material_drawer_selected">@color/material_drawer_selected</item> <!-- Material 2 defines 12% alpha, primary color -->
|
||||
<item name="material_drawer_selected_text">#242424</item>
|
||||
<item name="material_drawer_header_selection_text">@color/material_drawer_header_selection_text</item>
|
||||
<item name="material_drawer_header_selection_subtext">@color/material_drawer_dark_header_selection_subtext</item>
|
||||
<item name="materialDrawerStyle">@style/Widget.MaterialDrawerStyle</item>
|
||||
<item name="materialDrawerHeaderStyle">@style/Widget.MaterialDrawerHeaderStyle</item>
|
||||
<!--<item name="materialDrawerPrimaryIcon">#5F6368</item>-->
|
||||
</style>
|
||||
|
||||
<style name="NavView.Dark" parent="Theme.MaterialComponents.NoActionBar">
|
||||
@ -100,9 +110,10 @@
|
||||
<item name="colorSecondaryVariant">?colorAccent</item>
|
||||
|
||||
<!-- window colors -->
|
||||
<item name="android:colorBackground">@color/background_dark</item>
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
<item name="colorSurface">#303030</item>
|
||||
<!-- a descendant theme should specify those two as background colors -->
|
||||
<item name="android:colorBackground">@color/background_dark</item>
|
||||
<item name="colorSurface">#333333</item>
|
||||
|
||||
<!-- FAB styling -->
|
||||
<item name="colorFab">?colorAccent</item>
|
||||
@ -110,10 +121,12 @@
|
||||
<item name="colorOnFab">?colorOnSecondary</item>
|
||||
|
||||
<!-- text colors -->
|
||||
<item name="android:textColorPrimary">#ffffffff</item>
|
||||
<item name="android:textColorSecondary">#99ffffff</item>
|
||||
<item name="colorOnPrimary">#ffffff</item>
|
||||
<item name="colorOnSecondary">#ffffff</item>
|
||||
<item name="colorOnBackground">#ffffff</item>
|
||||
<item name="colorOnSurface">#ffffff</item>
|
||||
<item name="colorOnBackground">?android:textColorPrimary</item>
|
||||
<item name="colorOnSurface">?android:textColorPrimary</item>
|
||||
|
||||
<!-- system bars config -->
|
||||
<item name="actionBarBackground">?colorSurface</item>
|
||||
@ -128,24 +141,14 @@
|
||||
<item name="android:textViewStyle">@style/NavView.TextView</item>
|
||||
|
||||
<!-- drawer & bottom sheet styling -->
|
||||
<item name="material_drawer_background">?android:colorBackground</item>
|
||||
<item name="material_drawer_primary_text">#FFFFFF</item>
|
||||
<item name="material_drawer_primary_icon">#9AA0A6</item>
|
||||
<item name="material_drawer_secondary_text">@color/material_drawer_dark_secondary_text</item>
|
||||
<item name="material_drawer_hint_text">@color/material_drawer_dark_hint_text</item>
|
||||
<item name="material_drawer_divider">@color/material_drawer_dark_divider</item>
|
||||
<item name="material_drawer_selected">@color/material_drawer_dark_selected</item> <!-- Material 2 defines 12% alpha, primary color -->
|
||||
<item name="material_drawer_selected_text">#FFFFFF</item>
|
||||
<item name="material_drawer_header_selection_text">@color/material_drawer_dark_header_selection_text</item>
|
||||
<item name="material_drawer_header_selection_subtext">@color/material_drawer_dark_header_selection_subtext</item>
|
||||
<item name="materialDrawerStyle">@style/Widget.MaterialDrawerStyle</item>
|
||||
<item name="materialDrawerHeaderStyle">@style/Widget.MaterialDrawerHeaderStyle</item>
|
||||
<!--<item name="material_drawer_primary_icon">#9AA0A6</item>-->
|
||||
</style>
|
||||
|
||||
<style name="NavView.Black" parent="NavView.Dark">
|
||||
<item name="android:colorBackground">@color/background_black</item>
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
<item name="colorSurface">#121212</item>
|
||||
|
||||
<item name="colorBackgroundFloating">#2D2D2D</item>
|
||||
</style>
|
||||
|
||||
|
||||
@ -153,4 +156,4 @@
|
||||
<style name="width_max_600dp">
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
</style>
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -1 +1 @@
|
||||
include ':app', ':navlib'
|
||||
include ':app', ':navlib', ':navlib-font'
|
||||
|
Loading…
x
Reference in New Issue
Block a user