Skip to content
Snippets Groups Projects
Commit abc4b1f4 authored by zaydanA's avatar zaydanA
Browse files

bottom navbar

parent bdc3e65f
No related merge requests found
Pipeline #61209 failed with stages
...@@ -3,7 +3,20 @@ ...@@ -3,7 +3,20 @@
<component name="deploymentTargetDropDown"> <component name="deploymentTargetDropDown">
<value> <value>
<entry key="app"> <entry key="app">
<State /> <State>
<runningDeviceTargetSelectedWithDropDown>
<Target>
<type value="RUNNING_DEVICE_TARGET" />
<deviceKey>
<Key>
<type value="SERIAL_NUMBER" />
<value value="SDEDU20221000821" />
</Key>
</deviceKey>
</Target>
</runningDeviceTargetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2024-03-16T15:01:52.841022900Z" />
</State>
</entry> </entry>
</value> </value>
</component> </component>
......
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
\ No newline at end of file
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
android:id="@+id/container" android:id="@+id/container"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize" android:paddingTop="10dp"
> >
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
app:menu="@menu/bottom_nav_menu" app:menu="@menu/bottom_nav_menu"
android:layout_marginEnd="20dp" android:layout_marginEnd="20dp"
android:background="@android:color/transparent" android:background="@android:color/transparent"
app:itemTextAppearanceActive="@style/BottomNavigationView.Active"
app:itemTextAppearanceInactive="@style/BottomNavigationView"
/> />
</com.google.android.material.bottomappbar.BottomAppBar> </com.google.android.material.bottomappbar.BottomAppBar>
......
...@@ -9,7 +9,8 @@ ...@@ -9,7 +9,8 @@
<item <item
android:id="@+id/navigation_dashboard" android:id="@+id/navigation_dashboard"
android:icon="@drawable/ic_dashboard_black_24dp" android:icon="@drawable/ic_dashboard_black_24dp"
android:title="@string/title_dashboard" /> android:title="@string/title_dashboard"
/>
<item <item
android:id="@+id/floatingNav" android:id="@+id/floatingNav"
......
...@@ -16,4 +16,13 @@ ...@@ -16,4 +16,13 @@
<item name="android:navigationBarColor">#000000</item> <item name="android:navigationBarColor">#000000</item>
</style> </style>
<style name="BottomNavigationView" parent="@style/TextAppearance.AppCompat.Caption">
<item name="android:textSize">10sp</item>
</style>
<style name="BottomNavigationView.Active" parent="@style/TextAppearance.AppCompat.Caption">
<item name="android:textSize">10sp</item>
</style>
</resources> </resources>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment