Compare commits

..

No commits in common. "master" and "v0.6.0" have entirely different histories.

33 changed files with 174 additions and 421 deletions

4
.idea/gradle.xml generated
View File

@ -1,10 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings"> <component name="GradleSettings">
<option name="linkedExternalProjectsSettings"> <option name="linkedExternalProjectsSettings">
<GradleProjectSettings> <GradleProjectSettings>
<option name="testRunner" value="PLATFORM" />
<option name="distributionType" value="DEFAULT_WRAPPED" /> <option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" /> <option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules"> <option name="modules">
@ -12,10 +10,10 @@
<option value="$PROJECT_DIR$" /> <option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" /> <option value="$PROJECT_DIR$/app" />
<option value="$PROJECT_DIR$/navlib" /> <option value="$PROJECT_DIR$/navlib" />
<option value="$PROJECT_DIR$/navlib-font" />
</set> </set>
</option> </option>
<option name="resolveModulePerSourceSet" value="false" /> <option name="resolveModulePerSourceSet" value="false" />
<option name="testRunner" value="PLATFORM" />
</GradleProjectSettings> </GradleProjectSettings>
</option> </option>
</component> </component>

View File

@ -1,30 +0,0 @@
<?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
View File

@ -5,7 +5,7 @@
<configuration PROFILE_NAME="Debug" CONFIG_NAME="Debug" /> <configuration PROFILE_NAME="Debug" CONFIG_NAME="Debug" />
</configurations> </configurations>
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="false" project-jdk-name="JDK" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View File

@ -3,7 +3,6 @@
<component name="RunConfigurationProducerService"> <component name="RunConfigurationProducerService">
<option name="ignoredProducers"> <option name="ignoredProducers">
<set> <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.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" /> <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" /> <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />

View File

@ -33,18 +33,17 @@ android {
dependencies { dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "androidx.appcompat:appcompat:1.2.0" implementation "androidx.appcompat:appcompat:${versions.appcompat}"
implementation "androidx.legacy:legacy-support-v4:1.0.0" implementation "androidx.legacy:legacy-support-v4:${versions.legacy}"
implementation "androidx.constraintlayout:constraintlayout:2.0.4" implementation "com.mikepenz:materialdrawer:${versions.materialdrawer}"
implementation "androidx.core:core-ktx:1.3.2" implementation "com.mikepenz:iconics-core:${versions.iconics}"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" implementation "com.mikepenz:iconics-views:${versions.iconics}"
implementation "com.google.android.material:material:1.3.0" implementation "com.mikepenz:community-material-typeface:${versions.font_cmd}@aar"
implementation "androidx.core:core-ktx:${versions.ktx}"
implementation "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}"
implementation "com.google.android.material:material:${versions.material}"
implementation "pl.droidsonroids.gif:android-gif-drawable:${versions.gifdrawable}"
implementation 'androidx.multidex:multidex:2.0.1' 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") implementation project(":navlib")
} }

View File

@ -6,6 +6,7 @@ import android.graphics.PorterDuffColorFilter
import android.graphics.drawable.Drawable import android.graphics.drawable.Drawable
import android.widget.ImageView import android.widget.ImageView
import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory
import pl.droidsonroids.gif.GifDrawable
import pl.szczodrzynski.navlib.ImageHolder import pl.szczodrzynski.navlib.ImageHolder
import pl.szczodrzynski.navlib.crc16 import pl.szczodrzynski.navlib.crc16
import pl.szczodrzynski.navlib.drawer.IDrawerProfile import pl.szczodrzynski.navlib.drawer.IDrawerProfile
@ -56,7 +57,7 @@ class DrawerProfile(
/* if you want to use GIFs as profile drawables, add /* if you want to use GIFs as profile drawables, add
implementation "pl.droidsonroids.gif:android-gif-drawable:${versions.gifdrawable}" implementation "pl.droidsonroids.gif:android-gif-drawable:${versions.gifdrawable}"
*/ */
return null//GifDrawable(image ?: "") return GifDrawable(image ?: "")
} }
else { else {
return RoundedBitmapDrawableFactory.create(context.resources, image ?: "") return RoundedBitmapDrawableFactory.create(context.resources, image ?: "")
@ -88,4 +89,4 @@ class DrawerProfile(
override fun applyImageTo(imageView: ImageView) { override fun applyImageTo(imageView: ImageView) {
getImageHolder(imageView.context).applyTo(imageView) getImageHolder(imageView.context).applyTo(imageView)
} }
} }

View File

@ -8,11 +8,10 @@ import android.view.Gravity
import android.view.View import android.view.View
import android.widget.Toast import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity import androidx.appcompat.app.AppCompatActivity
import com.mikepenz.iconics.Iconics import com.mikepenz.iconics.IconicsColor
import com.mikepenz.iconics.IconicsDrawable import com.mikepenz.iconics.IconicsDrawable
import com.mikepenz.iconics.IconicsSize
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
import com.mikepenz.iconics.utils.actionBar
import com.mikepenz.iconics.utils.paddingDp
import com.mikepenz.materialdrawer.holder.StringHolder import com.mikepenz.materialdrawer.holder.StringHolder
import com.mikepenz.materialdrawer.model.ProfileSettingDrawerItem import com.mikepenz.materialdrawer.model.ProfileSettingDrawerItem
import com.mikepenz.materialdrawer.model.interfaces.* import com.mikepenz.materialdrawer.model.interfaces.*
@ -28,7 +27,6 @@ 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.NavBottomSheet.Companion.TOGGLE_GROUP_SORTING_ORDER
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetPrimaryItem import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetPrimaryItem
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
import pl.szczodrzynski.navlib.colorAttr
import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem
import pl.szczodrzynski.navlib.getColorFromAttr import pl.szczodrzynski.navlib.getColorFromAttr
import pl.szczodrzynski.navlib.withIcon import pl.szczodrzynski.navlib.withIcon
@ -43,8 +41,6 @@ class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
Iconics.respectFontBoundsDefault = true
if (darkTheme == null) if (darkTheme == null)
darkTheme = getSharedPreferences("prefs", Context.MODE_PRIVATE).getBoolean("darkTheme", false) darkTheme = getSharedPreferences("prefs", Context.MODE_PRIVATE).getBoolean("darkTheme", false)
@ -215,7 +211,7 @@ class MainActivity : AppCompatActivity() {
navView.bottomSheet.enableDragToOpen = isChecked navView.bottomSheet.enableDragToOpen = isChecked
} }
navView.bottomBar.fabIcon = CommunityMaterial.Icon3.cmd_pencil navView.bottomBar.fabIcon = CommunityMaterial.Icon2.cmd_pencil
navView.bottomBar.fabExtendedText = "Compose" navView.bottomBar.fabExtendedText = "Compose"
navView.bottomBar.fabExtended = false navView.bottomBar.fabExtended = false
@ -243,13 +239,13 @@ class MainActivity : AppCompatActivity() {
.withSelected(true) .withSelected(true)
.withIdentifier(1) .withIdentifier(1)
.withBadgeStyle(badgeStyle) .withBadgeStyle(badgeStyle)
.withIcon(CommunityMaterial.Icon2.cmd_google_home), .withIcon(CommunityMaterial.Icon.cmd_google_home),
DrawerPrimaryItem() DrawerPrimaryItem()
.withIdentifier(2) .withIdentifier(2)
.withName("Settings") .withName("Settings")
.withBadgeStyle(badgeStyle) .withBadgeStyle(badgeStyle)
.withIcon(CommunityMaterial.Icon.cmd_cog_outline), .withIcon(CommunityMaterial.Icon2.cmd_settings),
DrawerPrimaryItem().withName("iOS") DrawerPrimaryItem().withName("iOS")
.withIdentifier(60) .withIdentifier(60)
@ -264,10 +260,10 @@ class MainActivity : AppCompatActivity() {
DrawerPrimaryItem().withName("Lock screen") DrawerPrimaryItem().withName("Lock screen")
.withDescription("aaand not visible in Mini Drawer") .withDescription("aaand not visible in Mini Drawer")
.withIdentifier(62)
.withIsHiddenInMiniDrawer(true) .withIsHiddenInMiniDrawer(true)
.withIdentifier(62)
.withBadgeStyle(badgeStyle) .withBadgeStyle(badgeStyle)
.withIcon(CommunityMaterial.Icon2.cmd_fingerprint), .withIcon(CommunityMaterial.Icon.cmd_fingerprint),
DrawerPrimaryItem().withName("HDR enable/disable") DrawerPrimaryItem().withName("HDR enable/disable")
.withTag(0) .withTag(0)
@ -280,14 +276,17 @@ class MainActivity : AppCompatActivity() {
.withDescription("Because we all hate ads") .withDescription("Because we all hate ads")
.withIdentifier(64) .withIdentifier(64)
.withBadgeStyle(badgeStyle) .withBadgeStyle(badgeStyle)
.withIcon(CommunityMaterial.Icon2.cmd_google_ads), .withIcon(CommunityMaterial.Icon.cmd_adchoices),
DrawerPrimaryItem().withName("Wonderful browsing experience and this is a long string") DrawerPrimaryItem().withName("Wonderful browsing experience and this is a long string")
.withIdentifier(65) .withIdentifier(65)
.withBadgeStyle(badgeStyle) .withBadgeStyle(badgeStyle)
.withIcon(CommunityMaterial.Icon3.cmd_microsoft_internet_explorer) .withIcon(CommunityMaterial.Icon2.cmd_internet_explorer)
) )
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") //setAccountHeaderBackground("/sdcard/ban.gif")
appendProfiles( appendProfiles(
@ -299,19 +298,15 @@ class MainActivity : AppCompatActivity() {
DrawerProfile(6, "Gandalf", "http://sax.hol.es/", 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"
addProfileSettings( addProfileSettings(
ProfileSettingDrawerItem() ProfileSettingDrawerItem()
.withName("Add Account") .withName("Add Account")
.withDescription("Add new GitHub Account") .withDescription("Add new GitHub Account")
.withIcon( .withIcon(
IconicsDrawable(context, CommunityMaterial.Icon3.cmd_plus).apply { IconicsDrawable(context, CommunityMaterial.Icon2.cmd_plus)
actionBar() .actionBar()
paddingDp = 5 .padding { IconicsSize.dp(5) }
colorAttr(context, R.attr.materialDrawerPrimaryText) .color { IconicsColor.colorInt(getColorFromAttr(context, R.attr.materialDrawerPrimaryText)) }
}
) )
.withOnDrawerItemClickListener { v, item, position -> .withOnDrawerItemClickListener { v, item, position ->
Toast.makeText(context, "Add account", Toast.LENGTH_SHORT).show() Toast.makeText(context, "Add account", Toast.LENGTH_SHORT).show()
@ -319,7 +314,7 @@ class MainActivity : AppCompatActivity() {
}, },
ProfileSettingDrawerItem() ProfileSettingDrawerItem()
.withName("Manage Account") .withName("Manage Account")
.withIcon(CommunityMaterial.Icon.cmd_cog_outline) .withIcon(CommunityMaterial.Icon2.cmd_settings)
) )
drawerItemSelectedListener = { id, position, drawerItem -> drawerItemSelectedListener = { id, position, drawerItem ->
@ -359,16 +354,12 @@ class MainActivity : AppCompatActivity() {
} }
} }
setSelection.setOnClickListener {
navView.drawer.setSelection(id = 1, fireOnClick = false)
}
navView.bottomSheet.apply { navView.bottomSheet.apply {
this += BottomSheetPrimaryItem(true) this += BottomSheetPrimaryItem(true)
.withId(1) .withId(1)
.withTitle("Compose") .withTitle("Compose")
.withIcon(CommunityMaterial.Icon3.cmd_pencil) .withIcon(CommunityMaterial.Icon2.cmd_pencil)
.withOnClickListener(View.OnClickListener { .withOnClickListener(View.OnClickListener {
Toast.makeText(this@MainActivity, "Compose message", Toast.LENGTH_SHORT).show() Toast.makeText(this@MainActivity, "Compose message", Toast.LENGTH_SHORT).show()
}) })
@ -376,7 +367,7 @@ class MainActivity : AppCompatActivity() {
this += BottomSheetPrimaryItem(false) this += BottomSheetPrimaryItem(false)
.withId(3) .withId(3)
.withTitle("Synchronise") .withTitle("Synchronise")
.withIcon(CommunityMaterial.Icon3.cmd_sync) .withIcon(CommunityMaterial.Icon2.cmd_sync)
.withOnClickListener(View.OnClickListener { .withOnClickListener(View.OnClickListener {
Toast.makeText(this@MainActivity, "Synchronising...", Toast.LENGTH_SHORT).show() Toast.makeText(this@MainActivity, "Synchronising...", Toast.LENGTH_SHORT).show()
}) })
@ -408,7 +399,7 @@ class MainActivity : AppCompatActivity() {
textInputEnabled = true textInputEnabled = true
textInputHint = "Search" textInputHint = "Search"
textInputHelperText = "0 messages found" textInputHelperText = "0 messages found"
textInputIcon = CommunityMaterial.Icon3.cmd_magnify textInputIcon = CommunityMaterial.Icon2.cmd_magnify
textInputChangedListener = object : NavBottomSheet.OnTextInputChangedListener { textInputChangedListener = object : NavBottomSheet.OnTextInputChangedListener {
override fun onTextChanged(s: String, start: Int, before: Int, count: Int) { override fun onTextChanged(s: String, start: Int, before: Int, count: Int) {
navView.toolbar.subtitle = s navView.toolbar.subtitle = s

View File

@ -35,12 +35,6 @@
android:layout_height="48dp" android:layout_height="48dp"
android:text="Ripple bottombar" /> android:text="Ripple bottombar" />
<Button
android:id="@+id/setSelection"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="Set selection" />
<TextView <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"

View File

@ -2,18 +2,55 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.4.31' kotlin_version = '1.3.61'
release = [ release = [
// major.minor.patch.rc.beta // major.minor.patch.rc.beta
versionName: "0.8.0", versionName: "0.6.0",
versionCode: 80099 versionCode: 60099
] ]
setup = [ setup = [
compileSdk: 30, compileSdk: 28,
buildTools: "28.0.3",
minSdk : 16, minSdk : 16,
targetSdk : 30 targetSdk : 28
]
versions = [
gradleAndroid : "4.0.0-beta03",
kotlin : ext.kotlin_version,
ktx : "1.2.0",
androidX : '1.0.0',
annotation : '1.1.0',
recyclerView : '1.2.0-alpha01',
material : '1.2.0-alpha05',
appcompat : '1.2.0-alpha03',
constraintLayout : '2.0.0-beta4',
cardview : '1.0.0',
gridLayout : '1.0.0',
navigation : "2.0.0",
navigationFragment: "1.0.0",
legacy : "1.0.0",
room : "2.2.5",
lifecycle : "2.2.0",
work : "2.3.4",
firebase : '17.2.2',
firebasemessaging: "20.1.3",
play_services : "17.0.0",
materialdialogs : "0.9.6.0",
materialdrawer : "8.0.0-rc02",
iconics : "4.0.1",
font_cmd : "3.5.95.1-kotlin",
gifdrawable : "1.2.15",
retrofit : "2.6.4"
] ]
} }
@ -22,8 +59,8 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath "com.android.tools.build:gradle:4.2.0-beta06" classpath "com.android.tools.build:gradle:${versions.gradleAndroid}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-all.zip

View File

@ -1 +0,0 @@
/build

View File

@ -1,44 +0,0 @@
/*
* 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"
}

View File

@ -1 +0,0 @@
-keep class com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont { *; }

View File

@ -1,18 +0,0 @@
#
# 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

View File

@ -1,18 +0,0 @@
<?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" />

View File

@ -1,72 +0,0 @@
/*
* 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 }
}
}

View File

@ -1,20 +0,0 @@
<?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>

View File

@ -1,31 +0,0 @@
<?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>

View File

@ -24,8 +24,8 @@ android {
} }
} }
buildFeatures { dataBinding {
dataBinding = true enabled = true
} }
packagingOptions { packagingOptions {
@ -36,20 +36,22 @@ android {
dependencies { dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "androidx.annotation:annotation:${versions.annotation}"
implementation "androidx.appcompat:appcompat:1.2.0" implementation "androidx.appcompat:appcompat:${versions.appcompat}"
implementation "androidx.core:core-ktx:1.3.2" implementation "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}"
implementation "androidx.recyclerview:recyclerview:1.1.0" implementation "androidx.core:core-ktx:${versions.ktx}"
implementation "com.google.android.material:material:1.3.0" implementation "androidx.gridlayout:gridlayout:1.0.0"
implementation "androidx.legacy:legacy-support-v4:${versions.legacy}"
implementation "androidx.recyclerview:recyclerview:${versions.recyclerView}"
implementation "com.google.android.material:material:${versions.material}"
api "com.mikepenz:materialize:1.2.1" api "com.mikepenz:materialdrawer:${versions.materialdrawer}"
api "com.mikepenz:materialdrawer:8.3.3" api "com.mikepenz:community-material-typeface:${versions.font_cmd}@aar"
api "com.mikepenz:iconics-core:5.3.0-b01" api "com.mikepenz:iconics-core:${versions.iconics}"
api "com.mikepenz:itemanimators:1.1.0" implementation "com.mikepenz:materialize:1.2.1"
implementation "com.mikepenz:itemanimators:1.1.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "pl.droidsonroids.gif:android-gif-drawable:${versions.gifdrawable}"
compileOnly "pl.droidsonroids.gif:android-gif-drawable:1.2.15" implementation 'com.balysv:material-ripple:1.0.2'
implementation "com.balysv:material-ripple:1.0.2"
implementation project(":navlib-font")
} }

View File

@ -1 +1,2 @@
-keep class androidx.drawerlayout.widget.DrawerLayout { *; } -keep class androidx.drawerlayout.widget.DrawerLayout { *; }
-keep class androidx.customview.widget.ViewDragHelper { *; }

View File

@ -21,3 +21,4 @@
#-renamesourcefileattribute SourceFile #-renamesourcefileattribute SourceFile
-keep class androidx.drawerlayout.widget.DrawerLayout { *; } -keep class androidx.drawerlayout.widget.DrawerLayout { *; }
-keep class androidx.customview.widget.ViewDragHelper { *; }

View File

@ -11,9 +11,10 @@ import android.widget.ImageView
import androidx.annotation.ColorInt import androidx.annotation.ColorInt
import androidx.annotation.DrawableRes import androidx.annotation.DrawableRes
import androidx.appcompat.content.res.AppCompatResources import androidx.appcompat.content.res.AppCompatResources
import com.mikepenz.iconics.IconicsColor
import com.mikepenz.iconics.IconicsDrawable import com.mikepenz.iconics.IconicsDrawable
import com.mikepenz.iconics.typeface.IIcon import com.mikepenz.iconics.typeface.IIcon
import com.mikepenz.iconics.utils.actionBar import com.mikepenz.iconics.utils.paddingDp
import com.mikepenz.iconics.utils.sizeDp import com.mikepenz.iconics.utils.sizeDp
import com.mikepenz.materialdrawer.util.DrawerImageLoader import com.mikepenz.materialdrawer.util.DrawerImageLoader
import pl.droidsonroids.gif.GifDrawable import pl.droidsonroids.gif.GifDrawable
@ -98,10 +99,10 @@ open class ImageHolder : com.mikepenz.materialdrawer.holder.ImageHolder {
val uri = uri val uri = uri
when { when {
ii != null -> icon = IconicsDrawable(ctx).apply { ii != null -> icon = IconicsDrawable(ctx, ii).apply {
this.icon = ii color(IconicsColor.colorList(iconColor))
colorList = iconColor sizeDp(24)
sizeDp = 24 paddingDp(paddingDp)
} }
iconRes != -1 -> icon = AppCompatResources.getDrawable(ctx, iconRes) iconRes != -1 -> icon = AppCompatResources.getDrawable(ctx, iconRes)
uri != null -> try { uri != null -> try {

View File

@ -1,6 +1,5 @@
package pl.szczodrzynski.navlib package pl.szczodrzynski.navlib
import android.annotation.SuppressLint
import android.content.Context import android.content.Context
import android.graphics.drawable.LayerDrawable import android.graphics.drawable.LayerDrawable
import android.util.AttributeSet import android.util.AttributeSet
@ -14,7 +13,8 @@ import com.google.android.material.floatingactionbutton.ExtendedFloatingActionBu
import com.google.android.material.floatingactionbutton.FloatingActionButton import com.google.android.material.floatingactionbutton.FloatingActionButton
import com.mikepenz.iconics.IconicsDrawable import com.mikepenz.iconics.IconicsDrawable
import com.mikepenz.iconics.typeface.IIcon import com.mikepenz.iconics.typeface.IIcon
import com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
import com.mikepenz.iconics.utils.colorInt
import com.mikepenz.iconics.utils.sizeDp import com.mikepenz.iconics.utils.sizeDp
import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet
import pl.szczodrzynski.navlib.drawer.NavDrawer import pl.szczodrzynski.navlib.drawer.NavDrawer
@ -89,19 +89,11 @@ class NavBottomBar : BottomAppBar {
/** /**
* Set the FAB's icon. * Set the FAB's icon.
*/ */
var fabIcon: IIcon? = null var fabIcon: IIcon = CommunityMaterial.Icon.cmd_android
set(value) { set(value) {
field = value field = value
fabView?.setImageDrawable(IconicsDrawable(context).apply { fabView?.setImageDrawable(IconicsDrawable(context, value).colorInt(R.attr.colorFabIcon).sizeDp(24))
icon = value fabExtendedView?.icon = IconicsDrawable(context, value).colorInt(R.attr.colorFabIcon).sizeDp(24)
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. * Set the ExtendedFAB's text.
@ -120,7 +112,6 @@ class NavBottomBar : BottomAppBar {
fabExtendedView?.setOnClickListener(onClickListener) fabExtendedView?.setOnClickListener(onClickListener)
} }
@SuppressLint("ClickableViewAccessibility")
private fun create(attrs: AttributeSet?, defStyle: Int) { private fun create(attrs: AttributeSet?, defStyle: Int) {
setOnTouchListener { _, event -> setOnTouchListener { _, event ->
if (bottomSheet?.enable != true || bottomSheet?.enableDragToOpen != true) if (bottomSheet?.enable != true || bottomSheet?.enableDragToOpen != true)
@ -134,21 +125,20 @@ class NavBottomBar : BottomAppBar {
val icon = ContextCompat.getDrawable(context, R.drawable.ic_menu_badge) as LayerDrawable? val icon = ContextCompat.getDrawable(context, R.drawable.ic_menu_badge) as LayerDrawable?
icon?.apply { icon?.apply {
mutate() mutate()
setDrawableByLayerId(R.id.ic_menu, IconicsDrawable(context).apply { setDrawableByLayerId(R.id.ic_menu, IconicsDrawable(context)
this.icon = NavLibFont.Icon.nav_menu .icon(CommunityMaterial.Icon2.cmd_menu)
sizeDp = 24 .sizeDp(20)
colorAttr(context, R.attr.colorOnPrimary) .colorInt(getColorFromAttr(context, R.attr.colorOnPrimary)))
})
setDrawableByLayerId(R.id.ic_badge, BadgeDrawable(context)) setDrawableByLayerId(R.id.ic_badge, BadgeDrawable(context))
} }
navigationIcon = icon navigationIcon = icon
menu.add(0, -1, 0, "Menu") menu.add(0, -1, 0, "Menu")
.setIcon(IconicsDrawable(context).apply { .setIcon(
this.icon = NavLibFont.Icon.nav_dots_vertical IconicsDrawable(context)
sizeDp = 24 .icon(CommunityMaterial.Icon.cmd_dots_vertical)
colorAttr(context, R.attr.colorOnPrimary) .sizeDp(20)
}) .colorInt(getColorFromAttr(context, R.attr.colorOnPrimary)))
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS) .setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS)
setNavigationOnClickListener { setNavigationOnClickListener {

View File

@ -5,12 +5,13 @@ import android.content.res.Configuration.ORIENTATION_PORTRAIT
import android.content.res.Resources import android.content.res.Resources
import android.graphics.Color import android.graphics.Color
import android.os.Build.VERSION.SDK_INT 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.util.Log
import android.view.View import android.view.View
import android.view.View.* import android.view.View.*
import android.view.Window import android.view.Window
import android.view.WindowManager import android.view.WindowManager
import android.widget.Toast
import androidx.core.graphics.ColorUtils import androidx.core.graphics.ColorUtils
import androidx.core.view.ViewCompat import androidx.core.view.ViewCompat
import com.mikepenz.materialize.util.KeyboardUtil import com.mikepenz.materialize.util.KeyboardUtil
@ -184,12 +185,12 @@ class SystemBarsUtil(private val activity: Activity) {
// #3 SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the activity not resize when keyboard is open // #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. // Samsung TouchWiz - app will go fullscreen. There is a problem though, see #3.
var targetAppFullscreen = false var targetAppFullscreen = false
if (SDK_INT >= VERSION_CODES.KITKAT) { if (SDK_INT >= KITKAT) {
targetAppFullscreen = true targetAppFullscreen = true
} }
if (SDK_INT in VERSION_CODES.KITKAT until VERSION_CODES.LOLLIPOP) { if (SDK_INT in KITKAT until LOLLIPOP) {
// API 19-20 (KitKat 4.4) - set gradient status bar // API 19-20 (KitKat 4.4) - set gradient status bar
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
// take FallbackGradient color // take FallbackGradient color
@ -197,7 +198,7 @@ class SystemBarsUtil(private val activity: Activity) {
// disable darker even if [statusBarDarker] == true BUT gradient fallback is not COLOR_HALF_TRANSPARENT // disable darker even if [statusBarDarker] == true BUT gradient fallback is not COLOR_HALF_TRANSPARENT
//targetStatusBarDarker = targetStatusBarDarker && targetStatusBarFallbackGradient == COLOR_HALF_TRANSPARENT //targetStatusBarDarker = targetStatusBarDarker && targetStatusBarFallbackGradient == COLOR_HALF_TRANSPARENT
} }
else if (SDK_INT >= VERSION_CODES.LOLLIPOP) { else if (SDK_INT >= LOLLIPOP) {
// API 21+ (Lollipop 5.0+) - set transparent status bar // API 21+ (Lollipop 5.0+) - set transparent status bar
if (statusBarTranslucent) { if (statusBarTranslucent) {
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
@ -205,17 +206,17 @@ class SystemBarsUtil(private val activity: Activity) {
else { else {
window.statusBarColor = Color.TRANSPARENT window.statusBarColor = Color.TRANSPARENT
} }
if (SDK_INT < VERSION_CODES.M && targetStatusBarLight) { if (SDK_INT < M && targetStatusBarLight) {
// take FallbackLight color // take FallbackLight color
targetStatusBarMode = TARGET_MODE_LIGHT targetStatusBarMode = TARGET_MODE_LIGHT
} }
} }
if (SDK_INT >= VERSION_CODES.M && targetStatusBarLight) { if (SDK_INT >= M && targetStatusBarLight) {
// API 23+ (Marshmallow 6.0+) - set the status bar icons to dark color if [statusBarLight] is true // 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 window.decorView.systemUiVisibility = window.decorView.systemUiVisibility or SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
} }
// FOR SAMSUNG/SONY DEVICES (TouchWiz 4.1-4.3) // FOR SAMSUNG/SONY DEVICES (TouchWiz 4.1-4.3)
if (SDK_INT < VERSION_CODES.KITKAT) { if (SDK_INT < KITKAT) {
val libs = activity.packageManager.systemSharedLibraryNames val libs = activity.packageManager.systemSharedLibraryNames
var reflect: String? = null var reflect: String? = null
// TODO galaxy s3 - opening keyboard does not resize activity if fullscreen // TODO galaxy s3 - opening keyboard does not resize activity if fullscreen
@ -281,20 +282,20 @@ class SystemBarsUtil(private val activity: Activity) {
// TODO navigation bar options like status bar // TODO navigation bar options like status bar
// NAVIGATION BAR // NAVIGATION BAR
if (SDK_INT >= VERSION_CODES.KITKAT && (SDK_INT < VERSION_CODES.LOLLIPOP || !navigationBarTransparent)) { if (SDK_INT >= KITKAT && (SDK_INT < LOLLIPOP || !navigationBarTransparent)) {
// API 19-20 (KitKat 4.4) - set gradient navigation bar // API 19-20 (KitKat 4.4) - set gradient navigation bar
// API 21+ (Lollipop 5.0+) - set half-transparent navigation bar if [navigationBarTransparent] is false // API 21+ (Lollipop 5.0+) - set half-transparent navigation bar if [navigationBarTransparent] is false
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION)
} }
if (SDK_INT >= VERSION_CODES.LOLLIPOP && navigationBarTransparent) { if (SDK_INT >= LOLLIPOP && navigationBarTransparent) {
// API 21+ (Lollipop 5.0+) - set fully transparent navigation bar if [navigationBarTransparent] is true // API 21+ (Lollipop 5.0+) - set fully transparent navigation bar if [navigationBarTransparent] is true
window.navigationBarColor = Color.TRANSPARENT window.navigationBarColor = Color.TRANSPARENT
} }
// PADDING // PADDING
if (insetsListener != null) { if (insetsListener != null) {
if (SDK_INT >= VERSION_CODES.LOLLIPOP && false) { if (SDK_INT >= LOLLIPOP && false) {
ViewCompat.setOnApplyWindowInsetsListener(insetsListener!!) { _, insets -> ViewCompat.setOnApplyWindowInsetsListener(insetsListener!!) { _, insets ->
Log.d("NavLib", "Got insets left = ${insets.systemWindowInsetLeft}, top = ${insets.systemWindowInsetTop}, right = ${insets.systemWindowInsetRight}, bottom = ${insets.systemWindowInsetBottom}") Log.d("NavLib", "Got insets left = ${insets.systemWindowInsetLeft}, top = ${insets.systemWindowInsetTop}, right = ${insets.systemWindowInsetRight}, bottom = ${insets.systemWindowInsetBottom}")
if (insetsApplied) if (insetsApplied)

View File

@ -120,9 +120,7 @@ fun hasNavigationBar(context: Context): Boolean {
return hasNavigationBar return hasNavigationBar
} }
fun IconicsDrawable.colorAttr(context: Context, @AttrRes attrRes: Int) { fun IconicsDrawable.colorAttr(context: Context, @AttrRes attrRes: Int) = colorInt(getColorFromAttr(context, attrRes))
colorInt = getColorFromAttr(context, attrRes)
}
fun getColorFromAttr(context: Context, @AttrRes color: Int): Int { fun getColorFromAttr(context: Context, @AttrRes color: Int): Int {
val typedValue = TypedValue() val typedValue = TypedValue()

View File

@ -5,6 +5,7 @@ import android.content.Context
import android.graphics.PorterDuff import android.graphics.PorterDuff
import android.graphics.PorterDuffColorFilter import android.graphics.PorterDuffColorFilter
import android.graphics.drawable.Drawable import android.graphics.drawable.Drawable
import android.system.Os.close
import android.text.Editable import android.text.Editable
import android.text.TextWatcher import android.text.TextWatcher
import android.util.AttributeSet import android.util.AttributeSet
@ -27,12 +28,13 @@ import com.google.android.material.textfield.TextInputEditText
import com.google.android.material.textfield.TextInputLayout import com.google.android.material.textfield.TextInputLayout
import com.mikepenz.iconics.IconicsDrawable import com.mikepenz.iconics.IconicsDrawable
import com.mikepenz.iconics.typeface.IIcon import com.mikepenz.iconics.typeface.IIcon
import com.mikepenz.iconics.typeface.library.navlibfont.NavLibFont import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
import com.mikepenz.iconics.utils.paddingDp import com.mikepenz.iconics.utils.paddingDp
import com.mikepenz.iconics.utils.sizeDp import com.mikepenz.iconics.utils.sizeDp
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
import pl.szczodrzynski.navlib.* import pl.szczodrzynski.navlib.*
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
import pl.szczodrzynski.navlib.bottomsheet.items.IBottomSheetItem import pl.szczodrzynski.navlib.bottomsheet.items.IBottomSheetItem
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
class NavBottomSheet : CoordinatorLayout { class NavBottomSheet : CoordinatorLayout {
@ -278,9 +280,7 @@ class NavBottomSheet : CoordinatorLayout {
private fun toggleGroupGetIconicsDrawable(context: Context, icon: IIcon?): Drawable? { private fun toggleGroupGetIconicsDrawable(context: Context, icon: IIcon?): Drawable? {
if (icon == null) if (icon == null)
return null return null
return IconicsDrawable(context, icon).apply { return IconicsDrawable(context, icon).sizeDp(24).paddingDp(4)
sizeDp = 24
}
} }
fun toggleGroupAddItem(id: Int, text: String, @DrawableRes icon: Int, defaultSortOrder: Int = SORT_MODE_ASCENDING) { fun toggleGroupAddItem(id: Int, text: String, @DrawableRes icon: Int, defaultSortOrder: Int = SORT_MODE_ASCENDING) {
@ -337,8 +337,8 @@ class NavBottomSheet : CoordinatorLayout {
} }
button.tag = tag button.tag = tag
button.icon = toggleGroupGetIconicsDrawable(context, when (sortingMode) { button.icon = toggleGroupGetIconicsDrawable(context, when (sortingMode) {
SORT_MODE_ASCENDING -> NavLibFont.Icon.nav_sort_ascending SORT_MODE_ASCENDING -> CommunityMaterial.Icon2.cmd_sort_ascending
SORT_MODE_DESCENDING -> NavLibFont.Icon.nav_sort_descending SORT_MODE_DESCENDING -> CommunityMaterial.Icon2.cmd_sort_descending
else -> null else -> null
}) })
if (sortingMode != null) { if (sortingMode != null) {
@ -386,11 +386,7 @@ class NavBottomSheet : CoordinatorLayout {
set(value) { set(value) {
textInputLayout.startIconDrawable = when (value) { textInputLayout.startIconDrawable = when (value) {
is Drawable -> value is Drawable -> value
is IIcon -> IconicsDrawable(context).apply { is IIcon -> IconicsDrawable(context, value).sizeDp(24)/*.colorInt(Color.BLACK)*/
icon = value
sizeDp = 24
// colorInt = Color.BLACK
}
is Int -> context.getDrawableFromRes(value) is Int -> context.getDrawableFromRes(value)
else -> null else -> null
} }

View File

@ -9,6 +9,7 @@ import androidx.annotation.StringRes
import androidx.recyclerview.widget.RecyclerView import androidx.recyclerview.widget.RecyclerView
import com.mikepenz.iconics.IconicsDrawable import com.mikepenz.iconics.IconicsDrawable
import com.mikepenz.iconics.typeface.IIcon import com.mikepenz.iconics.typeface.IIcon
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
import com.mikepenz.iconics.utils.sizeDp import com.mikepenz.iconics.utils.sizeDp
import pl.szczodrzynski.navlib.ImageHolder import pl.szczodrzynski.navlib.ImageHolder
import pl.szczodrzynski.navlib.R import pl.szczodrzynski.navlib.R
@ -41,11 +42,10 @@ data class BottomSheetPrimaryItem(override val isContextual: Boolean = true) : I
override fun bindViewHolder(viewHolder: ViewHolder) { override fun bindViewHolder(viewHolder: ViewHolder) {
viewHolder.root.setOnClickListener(onClickListener) viewHolder.root.setOnClickListener(onClickListener)
viewHolder.image.setImageDrawable(IconicsDrawable(viewHolder.text.context).apply { viewHolder.image.setImageDrawable(IconicsDrawable(viewHolder.text.context)
icon = iconicsIcon .icon(iconicsIcon ?: CommunityMaterial.Icon.cmd_android)
colorAttr(viewHolder.text.context, android.R.attr.textColorSecondary) .colorAttr(viewHolder.text.context, android.R.attr.textColorSecondary)
sizeDp = 24 .sizeDp(24))
})
viewHolder.description.visibility = View.VISIBLE viewHolder.description.visibility = View.VISIBLE
when { when {

View File

@ -99,7 +99,6 @@ class NavDrawer(
accountHeader = AccountHeaderView(context).apply { accountHeader = AccountHeaderView(context).apply {
headerBackground = ImageHolder(R.drawable.header) headerBackground = ImageHolder(R.drawable.header)
displayBadgesOnSmallProfileImages = true
onAccountHeaderListener = { view, profile, current -> onAccountHeaderListener = { view, profile, current ->
if (profile is ProfileSettingDrawerItem) { if (profile is ProfileSettingDrawerItem) {
@ -171,18 +170,17 @@ class NavDrawer(
miniDrawer = MiniDrawerSliderView(context).apply { miniDrawer = MiniDrawerSliderView(context).apply {
drawer = this@NavDrawer.drawer drawer = this@NavDrawer.drawer
includeSecondaryDrawerItems = false includeSecondaryDrawerItems = false
try { this::class.java.getDeclaredField("onMiniDrawerItemClickListener").let {
this::class.java.getDeclaredField("onMiniDrawerItemClickListener").let { it.isAccessible = true
it.isAccessible = true it.set(this, { v: View?, position: Int, item: IDrawerItem<*>, type: Int ->
it.set(this, { v: View?, position: Int, item: IDrawerItem<*>, type: Int -> if (item is MiniProfileDrawerItem) {
if (item is MiniProfileDrawerItem) { profileSelectionOpen()
profileSelectionOpen() open()
open() true
true }
} else false else false
}) })
} }
} catch (_: Exception) { }
} }
updateMiniDrawer() updateMiniDrawer()
@ -280,17 +278,19 @@ class NavDrawer(
val mDrawerLayout = drawerLayout val mDrawerLayout = drawerLayout
val mDragger = mDrawerLayout::class.java.getDeclaredField( val mDragger = mDrawerLayout::class.java.getDeclaredField(
"mLeftDragger" "mLeftDragger"
) )//mRightDragger for right obviously
mDragger.isAccessible = true mDragger.isAccessible = true
val draggerObj = mDragger.get(mDrawerLayout) as ViewDragHelper? val draggerObj = mDragger.get(mDrawerLayout) as ViewDragHelper?
draggerObj?.edgeSize = size.toInt()
// update for SDK >= 29 (Android 10) val mEdgeSize = draggerObj?.javaClass?.getDeclaredField(
val useSystemInsets = mDrawerLayout::class.java.getDeclaredField( "mEdgeSize"
"sEdgeSizeUsingSystemGestureInsets"
) )
useSystemInsets.isAccessible = true mEdgeSize?.isAccessible = true
useSystemInsets.set(null, false)
mEdgeSize?.setInt(
draggerObj,
size.toInt()
) //optimal value as for me, you may set any constant in dp
} }
catch (e: Exception) { catch (e: Exception) {
e.printStackTrace() e.printStackTrace()
@ -475,7 +475,7 @@ class NavDrawer(
} }
if (drawer.selectedItemIdentifier != id.toLong() || !fireOnClick) if (drawer.selectedItemIdentifier != id.toLong() || !fireOnClick)
drawer.setSelectionAtPosition(drawer.getPosition(id.toLong()), fireOnClick) drawer.setSelection(id.toLong(), fireOnClick)
miniDrawer.setSelection(-1L) miniDrawer.setSelection(-1L)
if (drawerMode == DRAWER_MODE_MINI) if (drawerMode == DRAWER_MODE_MINI)
@ -518,14 +518,12 @@ class NavDrawer(
.withName(profile.name) .withName(profile.name)
.withEmail(profile.subname) .withEmail(profile.subname)
.also { it.icon = image } .also { it.icon = image }
.withBadgeStyle(badgeStyle)
.withNameShown(true) .withNameShown(true)
.also { profiles?.add(index, it) } .also { profiles?.add(index, it) }
} }
accountHeader.profiles = profiles accountHeader.profiles = profiles
updateBadges()
updateMiniDrawer() updateMiniDrawer()
} }
@ -625,32 +623,12 @@ class NavDrawer(
} }
} }
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()") Log.d("NavDebug", "updateBadges()")
profileCounters.map { unreadCounterList.map {
it.drawerItemId = unreadCounterTypeMap[it.type] it.drawerItemId = unreadCounterTypeMap[it.type]
} }
var totalCount = 0 var totalCount = 0
profileCounters.forEach { unreadCounterList.forEach {
if (it.drawerItemId == null) if (it.drawerItemId == null)
return@forEach return@forEach
if (it.profileId != currentProfile) { if (it.profileId != currentProfile) {
@ -721,10 +699,10 @@ class NavDrawer(
} }
if (item != null) { if (item != null) {
item.count = count item.count = count
updateBadges()
} }
else { else {
unreadCounterList.add(UnreadCounter(profileId, type, null, count)) unreadCounterList.add(UnreadCounter(profileId, type, null, count))
} }
updateBadges()
} }
} }

View File

@ -32,7 +32,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@drawable/bottom_sheet_background" android:background="@drawable/bottom_sheet_background"
android:paddingHorizontal="8dp" android:paddingStart="8dp"
android:paddingEnd="8dp"
tools:paddingBottom="48dp" tools:paddingBottom="48dp"
android:orientation="vertical"> android:orientation="vertical">
@ -106,4 +107,4 @@
</androidx.core.widget.NestedScrollView> </androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout> </layout>

View File

@ -1 +1 @@
include ':app', ':navlib', ':navlib-font' include ':app', ':navlib'