59 lines
2.2 KiB
XML
59 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_notice_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:padding="8dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="16sp"
|
|
tools:text="内蒙古自治区全名健身服务中心关于调整方案的通知于调整方案的通知于调整方案的通知于调整方案的通知" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_publish_user"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/gray_text"
|
|
android:textSize="12sp"
|
|
tools:text="发布人:张三" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_publish_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:textColor="@color/gray_text"
|
|
android:textSize="12sp"
|
|
tools:text="2020-20-21 12:23:23" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/gray_line" />
|
|
|
|
<WebView
|
|
android:id="@+id/wv_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|