mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
55 lines
2.1 KiB
XML
55 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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="match_parent">
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/btnAddSender"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:background="@color/colorPrimary"
|
|
android:contentDescription="@string/new_sender"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/ic_add"
|
|
app:borderWidth="0dp"
|
|
app:elevation="5dp"
|
|
app:fabSize="mini" />
|
|
|
|
<ListView
|
|
android:id="@+id/list_view_sender"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_marginBottom="85dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/help_tip"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#10000000"
|
|
android:gravity="center"
|
|
android:padding="3dp"
|
|
android:text="@string/sender_tips"
|
|
android:textColor="@color/colorPrimary"
|
|
android:textSize="12sp" />
|
|
|
|
<com.idormy.sms.forwarder.view.StepBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |