mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-28 05:37:41 +08:00
37 lines
1.2 KiB
XML
37 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_rule"
|
|
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/rule_tips"
|
|
android:textColor="@color/colorPrimary" />
|
|
|
|
<Button
|
|
android:layout_width="match_parent"
|
|
android:layout_height="35dp"
|
|
android:layout_margin="10dp"
|
|
android:background="@color/colorPrimary"
|
|
android:onClick="addRule"
|
|
android:padding="0dp"
|
|
android:text="@string/new_forwarding_rule" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |