OSDN Git Service

Panasonic用コマンド送信ダイアログ。
[gokigen/A01d.git] / app / src / main / res / layout-land / panasonic_request_layout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent">
5     <ScrollView
6         android:layout_width="match_parent"
7         android:layout_height="wrap_content">
8         <LinearLayout
9             android:id="@+id/info_edit_data"
10             android:orientation="vertical"
11             android:layout_width="fill_parent"
12             android:layout_height="wrap_content"
13             android:padding="6dp"
14             >
15             <TextView
16                 android:layout_width="fill_parent"
17                 android:layout_height="wrap_content"
18                 android:id="@+id/method_name"
19                 android:tag="title"
20                 android:maxWidth="130dp"
21                 android:minWidth="130dp"
22                 android:layout_gravity="start">
23             </TextView>
24
25
26             <EditText android:id="@+id/edit_service"
27                 android:layout_width="fill_parent"
28                 android:layout_height="wrap_content"
29                 android:autoLink="all"
30                 android:linksClickable="true"
31                 android:inputType="text"
32                 android:hint="@string/dialog_service_hint"
33                 />
34
35             <EditText android:id="@+id/edit_command"
36                 android:layout_width="fill_parent"
37                 android:layout_height="wrap_content"
38                 android:autoLink="all"
39                 android:linksClickable="true"
40                 android:inputType="text"
41                 android:hint="@string/dialog_command_hint"
42                 />
43
44             <EditText android:id="@+id/edit_parameter"
45                 android:layout_width="fill_parent"
46                 android:layout_height="wrap_content"
47                 android:autoLink="all"
48                 android:linksClickable="true"
49                 android:inputType="text"
50                 android:hint="@string/dialog_parameter_hint"
51                 />
52
53             <Button
54                 android:layout_width="wrap_content"
55                 android:layout_height="wrap_content"
56                 android:tag="button"
57                 android:id="@+id/send_message_button"
58                 android:text="@string/dialog_send_message"
59                 android:layout_gravity="center"
60                 android:textSize="6pt" />
61
62             <View
63                 android:layout_width="fill_parent"
64                 android:layout_height="2dp"
65                 android:background="@android:color/darker_gray"/>
66
67             <TextView
68                 android:layout_width="fill_parent"
69                 android:layout_height="wrap_content"
70                 android:id="@+id/panasonic_command_response_value"
71                 android:text="@string/blank"
72                 />
73
74             <View
75                 android:layout_width="fill_parent"
76                 android:layout_height="2dp"
77                 android:background="@android:color/darker_gray"/>
78
79         </LinearLayout>
80     </ScrollView>
81 </LinearLayout>