Fancy_Keyboard_Theme/app/src/main/res/layout/item_tab.xml
2024-04-03 10:37:24 +08:00

25 lines
771 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/keyboard_kind_name"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:padding="10dp"
android:text="text_TAB"
android:textColor="@color/black"
android:textSize="14sp" />
<View
android:id="@+id/line_index"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/theme_color" />
</LinearLayout>