Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/src/main/res/drawable/ic_baseline_folder_open_24.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8h16v10z"/>
</vector>
5 changes: 3 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
app:title="Scanlt"
app:titleTextAppearance="@style/ToolbarTitle">
</androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.AppBarLayout>
Expand Down Expand Up @@ -50,4 +51,4 @@
android:elevation="2dp"
/>

</RelativeLayout>
</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:title="@string/settings"
>
app:titleTextAppearance="@style/ToolbarTitle">
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>

Expand All @@ -28,4 +28,4 @@
android:layout_height="match_parent"
android:layout_below="@+id/appBarLayout" />

</RelativeLayout>
</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/menu/bottom_nav_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<item
android:id="@+id/documents"
android:icon="@drawable/ic_baseline_home_24"
android:icon="@drawable/ic_baseline_folder_open_24"
android:title="Documents"
/>

Expand All @@ -23,4 +23,4 @@
android:icon="@drawable/ic_qr_code_black_24dp"
android:title="Scan Code"
/>
</menu>
</menu>
4 changes: 4 additions & 0 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,8 @@
<style name="SettingsTheme" parent="AppTheme">
<item name="android:windowBackground">@color/colorBackground</item>
</style>

<style name="ToolbarTitle" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">20sp</item>
</style>
</resources>