1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:background="@color/black"
7    tools:context=".ui.main.CarrierConfigFragment">
8
9    <LinearLayout
10        android:layout_width="match_parent"
11        android:layout_height="match_parent"
12        android:orientation="vertical">
13
14        <TextView
15            android:layout_width="match_parent"
16            android:layout_height="wrap_content"
17            android:text="@string/service_package_name" />
18
19        <EditText
20            android:id="@+id/editServicePackageName"
21            android:layout_width="match_parent"
22            android:layout_height="wrap_content"
23            android:layout_weight="0"
24            android:ems="10"
25            android:gravity="start|top"
26            android:inputType="textMultiLine" />
27
28        <TextView
29            android:id="@+id/textTestLabel"
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content"
32            android:text="@string/service_release_time" />
33
34        <EditText
35            android:id="@+id/editServiceReleaseTime"
36            android:layout_width="match_parent"
37            android:layout_height="wrap_content"
38            android:ems="10"
39            android:inputType="numberSigned" />
40    </LinearLayout>
41
42    <LinearLayout
43        android:id="@+id/layout_buttons"
44        android:layout_width="match_parent"
45        android:layout_height="wrap_content"
46        android:layout_gravity="bottom"
47        android:orientation="vertical">
48
49        <Button
50            android:id="@+id/carrier_config_clear"
51            android:layout_width="match_parent"
52            android:layout_height="wrap_content"
53            android:text="@string/button_name_clear" />
54
55        <Button
56            android:id="@+id/carrier_config_done"
57            android:layout_width="match_parent"
58            android:layout_height="wrap_content"
59            android:text="@string/button_name_done" />
60    </LinearLayout>
61
62</FrameLayout>
63