mirror of
http://gitea.winboll.cc/Studio/WinBoLL.git
synced 2026-06-29 20:12:23 +08:00
27 lines
890 B
XML
27 lines
890 B
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="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/notification_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:textColor="#333333"
|
|
android:singleLine="true"
|
|
android:ellipsize="end" />
|
|
|
|
<TextView
|
|
android:id="@+id/notification_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textSize="13sp"
|
|
android:textColor="#666666"
|
|
android:scrollbars="vertical" />
|
|
|
|
</LinearLayout> |