mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-28 05:37:41 +08:00
55 lines
1.9 KiB
XML
55 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">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dip"
|
|
android:paddingBottom="10dip"
|
|
tools:ignore="UselessParent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
tools:ignore="RelativeOverlap">
|
|
|
|
<TextView
|
|
android:id="@+id/tip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/pull_tips" />
|
|
|
|
<TextView
|
|
android:id="@+id/lastUpdateTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/arrow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="20dip"
|
|
android:layout_toStartOf="@id/layout"
|
|
android:src="@android:drawable/ic_popup_sync"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress"
|
|
style="?android:attr/progressBarStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="20dip"
|
|
android:layout_toStartOf="@id/layout"
|
|
android:visibility="gone" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |