Blame view

C5/txpad/src/main/res/layout/input_ch_edittext.xml 1.59 KB
fac86401   孙向锦   初始化C5 Vote
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
35
36
37
38
39
40
41
42
43
44
  <?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:orientation="vertical">
  
      <EditText
          android:id="@+id/input"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginTop="20dp"
          android:maxLines="1"
          android:height="30dp"
          android:layout_marginLeft="30dp"
          android:hint="@string/basestation_mananger_input_remind"
          android:inputType="numberSigned"/>
  
      <LinearLayout
          android:layout_marginTop="20dp"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="horizontal"
          android:layout_marginBottom="10dp">
          <TextView
              android:id="@+id/cancel"
              android:layout_width="0dp"
              android:layout_height="30dp"
              android:layout_weight="1"
              android:textSize="@dimen/big_text_p4"
              android:layout_gravity="center"
              android:gravity="center"
              android:text="@string/sign_no_time_remind_cancel"/>
          <TextView
              android:id="@+id/positive"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:textSize="@dimen/big_text_p4"
              android:layout_gravity="center"
              android:gravity="center"
              android:text="@string/sign_no_time_remind_positive"/>
  
      </LinearLayout>
  </LinearLayout>