1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <?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="match_parent" android:orientation="vertical" android:layout_gravity="center" tools:context="com.example.tony_chen.call_phone.MainActivity">
<TextView android:layout_width="386dp" android:layout_height="37dp" android:text="迷你拨号器:" android:textColor="@color/colorAccent" android:textSize="30sp" android:textStyle="italic" tools:layout_editor_absoluteX="0dp" tools:layout_editor_absoluteY="60dp" /> <EditText android:id="@+id/et1" android:layout_width="366dp" android:layout_height="42dp" android:hint="请输入手机号" android:inputType="phone" tools:layout_editor_absoluteX="0dp" tools:layout_editor_absoluteY="111dp" /> <Button android:id="@+id/call" android:layout_width="142dp" android:layout_height="50dp" android:text="拨出" tools:layout_editor_absoluteX="241dp" tools:layout_editor_absoluteY="158dp" /> </LinearLayout>
|