feat: 하단 탭 아이콘 변경
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/color_bbbbbb" android:state_selected="false" />
|
||||
<item android:color="@color/color_eeeeee" android:state_selected="false" />
|
||||
<item android:color="@color/color_3bb9f1" android:state_selected="true" />
|
||||
</selector>
|
||||
|
||||
BIN
app/src/main/res/drawable-mdpi/ic_chat.png
Normal file
|
After Width: | Height: | Size: 401 B |
BIN
app/src/main/res/drawable-mdpi/ic_chat_selected.png
Normal file
|
After Width: | Height: | Size: 519 B |
BIN
app/src/main/res/drawable-mdpi/ic_home.png
Normal file
|
After Width: | Height: | Size: 394 B |
BIN
app/src/main/res/drawable-mdpi/ic_home_selected.png
Normal file
|
After Width: | Height: | Size: 431 B |
BIN
app/src/main/res/drawable-mdpi/ic_live.png
Normal file
|
After Width: | Height: | Size: 426 B |
BIN
app/src/main/res/drawable-mdpi/ic_live_selected.png
Normal file
|
After Width: | Height: | Size: 764 B |
BIN
app/src/main/res/drawable-mdpi/ic_my.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
app/src/main/res/drawable-mdpi/ic_my_selected.png
Normal file
|
After Width: | Height: | Size: 431 B |
BIN
app/src/main/res/drawable-mdpi/ic_subscribe.png
Normal file
|
After Width: | Height: | Size: 439 B |
BIN
app/src/main/res/drawable-mdpi/ic_subscribe_selected.png
Normal file
|
After Width: | Height: | Size: 631 B |
5
app/src/main/res/drawable/ic_tabbar_home.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/ic_home" android:state_selected="false" />
|
||||
<item android:drawable="@drawable/ic_home_selected" android:state_selected="true" />
|
||||
</selector>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/ic_tabbar_live_normal" android:state_selected="false" />
|
||||
<item android:drawable="@drawable/ic_tabbar_live_selected" android:state_selected="true" />
|
||||
<item android:drawable="@drawable/ic_live" android:state_selected="false" />
|
||||
<item android:drawable="@drawable/ic_live_selected" android:state_selected="true" />
|
||||
</selector>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/ic_tabbar_my_normal" android:state_selected="false" />
|
||||
<item android:drawable="@drawable/ic_tabbar_my_selected" android:state_selected="true" />
|
||||
<item android:drawable="@drawable/ic_my" android:state_selected="false" />
|
||||
<item android:drawable="@drawable/ic_my_selected" android:state_selected="true" />
|
||||
</selector>
|
||||
|
||||
@@ -163,7 +163,7 @@
|
||||
app:labelVisibilityMode="labeled">
|
||||
|
||||
<include
|
||||
android:id="@+id/tab_content"
|
||||
android:id="@+id/tab_home"
|
||||
layout="@layout/item_main_tab"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
@@ -176,13 +176,6 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<include
|
||||
android:id="@+id/tab_audition"
|
||||
layout="@layout/item_main_tab"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<include
|
||||
android:id="@+id/tab_my"
|
||||
layout="@layout/item_main_tab"
|
||||
|
||||