39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
|
<?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"
|
||
|
android:padding="10dp"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text_mark"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:lines="2"
|
||
|
android:ellipsize="end"
|
||
|
android:textSize="12sp"
|
||
|
android:textColor="@color/read_textColor" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/progress1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:textSize="8sp"
|
||
|
android:textColor="@color/dark_gray"/>
|
||
|
<TextView
|
||
|
android:id="@+id/mark_time"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="8sp"
|
||
|
android:textColor="@color/dark_gray"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|