33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/rl_user_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/colorPrimary">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_call_number"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="30dp"
|
|
android:gravity="center"
|
|
android:textAlignment="center"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="18sp"
|
|
tools:text="133-8892-9579" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_open_app"
|
|
style="@style/Base.Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="match_parent"
|
|
android:textColor="@android:color/white"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/tv_call_number"
|
|
android:gravity="center"
|
|
android:text="打开 Phone Call App"
|
|
android:textAlignment="center"
|
|
android:textSize="16sp" />
|
|
|
|
</RelativeLayout> |