user_item_focus_layout.xml 949 Bytes
Newer Older
徐健 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical">

    <TextView
        android:id="@+id/user_focus_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="情绪压力"
        android:textColor="#242424"
徐健 committed
15
        android:textSize="18dp" />
徐健 committed
16 17 18 19 20 21 22 23 24 25

    <TextView
        android:id="@+id/user_focus_desc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
        android:ellipsize="end"
        android:maxLines="1"
        android:text="#焦虑#困惑#失眠多梦#"
        android:textColor="#666666"
徐健 committed
26
        android:textSize="12dp" />
徐健 committed
27 28 29


</LinearLayout>