mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-29 14:17:41 +08:00
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
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="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ListView
|
|
android:id="@+id/list_view_sender"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_margin="5dp"
|
|
android:layout_weight="1" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/help_tip"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@string/sender_tips"
|
|
android:textColor="@color/colorPrimary" />
|
|
|
|
<Button
|
|
android:id="@+id/button22"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="35dp"
|
|
android:layout_margin="10dp"
|
|
android:background="@color/colorPrimary"
|
|
android:onClick="addSender"
|
|
android:padding="0dp"
|
|
android:text="添加发送方" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |