54 lines
1.9 KiB
XML
54 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
tools:ignore="ResourceName">
|
|
|
|
<!-- 上半部分:同折叠布局 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tvTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Hey there!"
|
|
android:lines="1"
|
|
android:textColor="#333333"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvDesc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="xxxR$0,1 está pronto por você! Saque agora!"
|
|
android:textColor="#666666"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tvAction"
|
|
android:layout_width="80dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/noti_bg_button_primary"
|
|
android:paddingHorizontal="12dp"
|
|
android:paddingVertical="4dp"
|
|
android:layout_marginStart="10dp"
|
|
android:gravity="center"
|
|
android:text="@string/vidi_go"
|
|
android:textColor="#fff"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |