74 lines
2.4 KiB
XML
74 lines
2.4 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"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:background="#fff"
|
|
android:paddingLeft="10sp"
|
|
android:paddingRight="10sp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/textView_event1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autoSizeTextType="uniform"
|
|
android:maxLines="1"
|
|
android:text="今天"
|
|
android:textSize="18sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_date"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autoSizeTextType="uniform"
|
|
android:maxLines="1"
|
|
android:singleLine="false"
|
|
android:text="YYYY-MM-DD ddd" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/textView_count1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:autoSizeTextType="uniform"
|
|
android:gravity="right"
|
|
android:text="0"
|
|
android:textSize="50sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_day1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="3sp"
|
|
android:text="天" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/listView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#eee"
|
|
android:divider="#eee"
|
|
android:dividerHeight="5dp"
|
|
android:padding="10sp">
|
|
|
|
</ListView>
|
|
|
|
</LinearLayout> |