Video_Wallpaper/app/src/main/res/layout/item_tab_view.xml
2025-05-30 10:04:20 +08:00

31 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:orientation="vertical">
<FrameLayout
android:id="@+id/frame_tab"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/tab_im"
android:layout_width="24dp"
android:layout_height="24dp"
android:src="@drawable/selector_ex" />
</FrameLayout>
<com.free.video.wallpaper.helper.MyText
android:id="@+id/tab_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:textSize="11sp"
app:apply_font="true"
android:textColor="@color/selector_title"
android:text="@string/app_name" />
</LinearLayout>