<?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:background="@color/lpsdk_app_bg"
|
android:gravity="center_vertical"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/login_layout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="10dp"
|
android:layout_marginEnd="10dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="账号:"
|
android:textColor="@color/lpsdk_textColor"
|
android:textSize="20sp" />
|
|
<!--sip号-->
|
<EditText
|
android:id="@+id/account_et"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
<<<<<<< HEAD
|
android:inputType="number"
|
android:text="1539852889620406274"
|
/>
|
=======
|
android:text="A583853817423247" />
|
>>>>>>> 1697a5c0a1d40e756738d1f99d496c6e33b3fd52
|
|
<Button
|
android:id="@+id/login_btn"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingStart="10dp"
|
android:paddingEnd="10dp"
|
android:text="登录"
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/account_layout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="10dp"
|
android:layout_marginTop="30dp"
|
android:layout_marginEnd="10dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="呼叫号:"
|
android:textColor="@color/lpsdk_textColor"
|
android:textSize="20sp" />
|
|
<!--sip号-->
|
<EditText
|
android:id="@+id/number_et"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:inputType="number"
|
android:text="1539850351294734338"
|
/>
|
|
<Button
|
android:id="@+id/call_btn"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingStart="10dp"
|
android:paddingEnd="10dp"
|
android:text="呼叫"
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
</LinearLayout>
|