36 lines
1.1 KiB
XML
36 lines
1.1 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">
|
|
|
|
<TextView
|
|
android:id="@+id/textView_id"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="id"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5sp"
|
|
android:text="YYYY/MM/DD HH:mm:ss" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ems="4"
|
|
android:padding="5sp"
|
|
android:text="国省市" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_event"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="5sp"
|
|
android:text="事件" />
|
|
</LinearLayout> |