temp_trusty_devices.xml
2.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<include layout="@layout/unionpay_plug_title_layout" />
<ScrollView style="@style/chinaums_scrollbar_style" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/chinaums_margin"
android:orientation="vertical"
android:background="@color/white" >
<ImageView
style="@style/lineBetweenWidget" />
<RelativeLayout
style="@style/formWidget"
android:gravity="center_vertical" >
<TextView
android:id="@+id/tv_device_model"
style="@style/formTextView"
android:text="@string/device_default_name" />
<TextView
android:id="@+id/imageView1"
style="@style/formTextView"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:text="@string/device_running"
android:textColor="@color/lightgreen" />
</RelativeLayout>
<ImageView style="@style/lineBetweenWidget" />
</LinearLayout>
<TextView
style="@style/formTextView"
android:layout_marginBottom="5dp"
android:layout_marginTop="15dp"
android:text="@string/device_other" />
<ListView
android:id="@+id/other_device_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@null" >
</ListView>
</LinearLayout>
</ScrollView>
</LinearLayout>