pandorapan/live/src/main/res/layout/item_sys_msg.xml

97 lines
3.5 KiB
XML
Raw Normal View History

2022-07-18 15:31:45 +08:00
<?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"
android:id="@+id/bg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/background_fff">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:layout_marginRight="65dp"
android:text="通知標題標題通知標題標題"
android:textColor="#ff161616"
android:textSize="16sp" />
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="20dp"
android:layout_marginRight="20dp"
android:text="2-24 17:00"
android:textColor="#ff8c8c8c"
android:textSize="12sp" />
<androidx.cardview.widget.CardView
android:id="@+id/cv_img_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_below="@id/text"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:layout_marginBottom="6dp"
android:visibility="visible"
app:cardCornerRadius="8dp"
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"
android:visibility="visible" />
</androidx.cardview.widget.CardView>
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/cv_img_content"
android:layout_margin="20dp"
android:textColor="@color/gray3"
android:textSize="14sp" />
<LinearLayout
android:id="@+id/to_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginBottom="18dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點擊查看"
android:textColor="#ffaaaaaa"
android:textSize="12sp" />
<ImageView
android:layout_width="17dp"
android:layout_height="16dp"
android:layout_marginLeft="3dp"
android:src="@mipmap/icon_more_live_menu" />
2022-07-18 15:31:45 +08:00
</LinearLayout>
</RelativeLayout>
</LinearLayout>