125 lines
4.7 KiB
XML
125 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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="match_parent"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/ft_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="65dp"
|
|
android:background="@color/white"
|
|
android:paddingTop="19dp"
|
|
android:visibility="visible">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/titleView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:onClick="backClick"
|
|
android:padding="9dp"
|
|
android:src="@mipmap/icon_back"
|
|
app:tint="@color/textColor" />
|
|
|
|
</RelativeLayout>
|
|
</FrameLayout>
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="50dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginRight="50dp"
|
|
android:background="@drawable/bg_gray_time"
|
|
android:gravity="center_horizontal"
|
|
android:text="2024年1月4号 10:05" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lt_advertisement"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="115dp"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginRight="15dp"
|
|
android:visibility="gone">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/cv_chatcontent_img1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="@color/transparent"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="87dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:scaleType="centerCrop" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/hor_recycler"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="120dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="5dp"
|
|
android:scrollbars="none" />
|
|
|
|
<Button
|
|
android:id="@+id/submit"
|
|
android:layout_width="170dp"
|
|
android:layout_height="45dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginBottom="30dp"
|
|
android:background="@mipmap/icon_sys_receive"
|
|
android:paddingBottom="3dp"
|
|
android:text="@string/receive1"
|
|
android:textColor="@color/yellow_ff6c00"
|
|
android:textSize="18dp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</LinearLayout> |