Add and indicator to feeds/folders tab layout

This commit is contained in:
Shinokuni 2019-09-28 13:07:01 +02:00
parent c097a454bf
commit 46a1f83d38
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/white" />
</shape>

View File

@ -23,7 +23,10 @@
<com.google.android.material.tabs.TabLayout
android:id="@+id/manage_feeds_folders_tablayout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
app:tabIndicator="@drawable/tab_indicator"
app:tabIndicatorColor="@android:color/white"
app:tabIndicatorHeight="4dp"/>
</com.google.android.material.appbar.AppBarLayout>