94 lines
3.7 KiB
XML
94 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="15dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/title_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="16dp"
|
|
android:text="通知標題標題通知標題標題"
|
|
android:textColor="#ff161616"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/time_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:layout_marginTop="19dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:text="2-24 17:00"
|
|
android:textColor="#ff8c8c8c"
|
|
android:textSize="13sp" />
|
|
</FrameLayout>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/banner_card"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="102dp"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/banner_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<TextView
|
|
android:id="@+id/context_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:text="內容內容內容內容內容內容內容內容內容內容內容
|
|
內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容
|
|
內容內容內容內容內容內容內容內容內容內容內容內容
|
|
內容內容內容內容內容內容內容。"
|
|
android:textColor="#B1B1B1"
|
|
android:textSize="13sp" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<TextView
|
|
android:id="@+id/to_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:layout_marginEnd="12dp"
|
|
android:drawablePadding="4dp"
|
|
android:drawableEnd="@mipmap/icon_more_live_menu"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/click_to_view"
|
|
android:textColor="#ff8c8c8c"
|
|
android:textSize="13sp" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView> |