Newer
Older
dictation / app / src / main / res / layout / item_character.xml
bello on 17 Jul 2020 891 bytes init
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:padding="20dp"
    android:orientation="vertical"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/title_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Title"
        android:textStyle="bold"
        android:paddingBottom="6dp"
        android:textColor="@color/purple_m2" />

    <TextView
        android:id="@+id/char_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:lineHeight="20dp"
        android:textSize="14sp"
        android:background="@drawable/press_gray_bg"
        android:padding="12dp"
        android:textColor="@color/fff" />

</LinearLayout>