Skip to content

Commit 44a55bb

Browse files
committed
internal links
1 parent 18c2e90 commit 44a55bb

6 files changed

Lines changed: 559 additions & 0 deletions

File tree

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Comment bookmark item
4+
-->
5+
6+
<LinearLayout
7+
xmlns:android="http://schemas.android.com/apk/res/android"
8+
android:orientation="vertical"
9+
android:layout_width="fill_parent"
10+
android:layout_height="wrap_content">
11+
12+
<RadioGroup
13+
android:id="@+id/rg_scope"
14+
android:layout_width="fill_parent"
15+
android:layout_height="wrap_content"
16+
android:orientation="horizontal">
17+
18+
<RadioButton
19+
android:id="@+id/rb_page"
20+
android:layout_width="wrap_content"
21+
android:layout_height="wrap_content"
22+
android:checked="true"
23+
android:layout_weight="1"
24+
android:text="@string/dlg_userdic_page" />
25+
<RadioButton
26+
android:id="@+id/rb_book"
27+
android:layout_width="wrap_content"
28+
android:layout_height="wrap_content"
29+
android:checked="false"
30+
android:layout_weight="1"
31+
android:text="@string/dlg_userdic_book" />
32+
<RadioButton
33+
android:id="@+id/rb_userdic_all"
34+
android:layout_width="wrap_content"
35+
android:layout_height="wrap_content"
36+
android:checked="false"
37+
android:layout_weight="1"
38+
android:text="@string/dlg_userdic_all" />
39+
40+
</RadioGroup>
41+
42+
43+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
44+
android:id="@+id/layout_clear_hist"
45+
android:orientation="horizontal"
46+
android:layout_width="fill_parent"
47+
android:layout_height="wrap_content"
48+
android:baselineAligned="false"
49+
android:layout_marginTop="3dip"
50+
android:layout_marginBottom="3dip"
51+
android:layout_marginLeft="2dip"
52+
android:layout_marginRight="2dip"
53+
>
54+
55+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
56+
android:id="@+id/userdic_list"
57+
android:orientation="vertical"
58+
android:layout_weight="8"
59+
android:layout_width="fill_parent"
60+
android:layout_height="fill_parent"
61+
android:baselineAligned="false"
62+
android:layout_marginTop="0dip"
63+
android:layout_marginBottom="0dip"
64+
android:layout_marginLeft="0dip"
65+
android:layout_marginRight="0dip"
66+
>
67+
68+
</LinearLayout>
69+
</LinearLayout>
70+
</LinearLayout>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Comment bookmark item
4+
-->
5+
6+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7+
android:id="@+id/userdic_item_body"
8+
android:orientation="horizontal"
9+
android:layout_width="fill_parent"
10+
android:layout_height="wrap_content"
11+
android:baselineAligned="false"
12+
android:layout_marginTop="3dip"
13+
android:layout_marginBottom="3dip"
14+
android:layout_marginLeft="2dip"
15+
android:layout_marginRight="2dip"
16+
>
17+
18+
<LinearLayout
19+
android:id="@+id/userdic_item_text"
20+
android:orientation="vertical"
21+
android:layout_width="fill_parent"
22+
android:layout_height="wrap_content"
23+
android:layout_gravity="center_vertical|fill_horizontal"
24+
android:baselineAligned="false"
25+
android:layout_marginTop="3dip"
26+
android:layout_marginBottom="3dip"
27+
android:layout_marginLeft="8dip"
28+
android:layout_marginRight="8dip"
29+
>
30+
31+
32+
<TextView android:id="@+id/userdic_word"
33+
style="@android:style/TextAppearance.Small"
34+
android:layout_width="wrap_content"
35+
android:layout_height="wrap_content"
36+
android:text="Position text bla bla bla bla bla more llines more more more lines"
37+
android:singleLine="false"
38+
android:maxLines="3"
39+
android:textStyle="bold"
40+
android:ellipsize="end"
41+
android:layout_gravity="left" />
42+
<TextView android:id="@+id/userdic_word_translate"
43+
style="@android:style/TextAppearance.Small"
44+
android:layout_width="wrap_content"
45+
android:layout_height="wrap_content"
46+
android:text="Position text bla bla bla bla bla..."
47+
android:singleLine="false"
48+
android:maxLines="6"
49+
android:ellipsize="end"
50+
android:layout_gravity="left" />
51+
</LinearLayout>
52+
</LinearLayout>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Comment bookmark item
4+
-->
5+
6+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7+
android:id="@+id/userdic_item_body"
8+
android:orientation="horizontal"
9+
android:layout_width="fill_parent"
10+
android:layout_height="wrap_content"
11+
android:baselineAligned="false"
12+
android:layout_marginTop="3dip"
13+
android:layout_marginBottom="3dip"
14+
android:layout_marginLeft="2dip"
15+
android:layout_marginRight="2dip"
16+
>
17+
18+
<LinearLayout
19+
android:id="@+id/openbook_item_text"
20+
android:orientation="vertical"
21+
android:layout_width="fill_parent"
22+
android:layout_height="wrap_content"
23+
android:layout_gravity="center_vertical|fill_horizontal"
24+
android:baselineAligned="false"
25+
android:layout_marginTop="3dip"
26+
android:layout_marginBottom="3dip"
27+
android:layout_marginLeft="8dip"
28+
android:layout_marginRight="8dip"
29+
>
30+
31+
<TextView android:id="@+id/file_name"
32+
style="@android:style/TextAppearance.Small"
33+
android:layout_width="wrap_content"
34+
android:layout_height="wrap_content"
35+
android:text="Position text bla bla bla bla bla more llines more more more lines"
36+
android:singleLine="false"
37+
android:maxLines="3"
38+
android:textStyle="bold"
39+
android:ellipsize="end"
40+
android:layout_gravity="left" />
41+
<TextView android:id="@+id/file_time"
42+
style="@android:style/TextAppearance.Small"
43+
android:layout_width="wrap_content"
44+
android:layout_height="wrap_content"
45+
android:text="Position text bla bla bla bla bla..."
46+
android:singleLine="false"
47+
android:maxLines="6"
48+
android:ellipsize="end"
49+
android:layout_gravity="left" />
50+
<TextView android:id="@+id/file_descr"
51+
style="@android:style/TextAppearance.Small"
52+
android:layout_width="wrap_content"
53+
android:layout_height="wrap_content"
54+
android:text="Position text bla bla bla bla bla..."
55+
android:singleLine="false"
56+
android:maxLines="6"
57+
android:ellipsize="end"
58+
android:layout_gravity="left" />
59+
</LinearLayout>
60+
</LinearLayout>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Comment bookmark item
4+
-->
5+
6+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7+
android:id="@+id/userdic_item_body"
8+
android:orientation="horizontal"
9+
android:layout_width="fill_parent"
10+
android:layout_height="wrap_content"
11+
android:baselineAligned="false"
12+
android:layout_marginTop="3dip"
13+
android:layout_marginBottom="3dip"
14+
android:layout_marginLeft="2dip"
15+
android:layout_marginRight="2dip"
16+
>
17+
18+
<LinearLayout
19+
android:id="@+id/openbook_item_text"
20+
android:orientation="vertical"
21+
android:layout_width="fill_parent"
22+
android:layout_height="wrap_content"
23+
android:layout_gravity="center_vertical|fill_horizontal"
24+
android:baselineAligned="false"
25+
android:layout_marginTop="3dip"
26+
android:layout_marginBottom="3dip"
27+
android:layout_marginLeft="8dip"
28+
android:layout_marginRight="8dip"
29+
>
30+
31+
<TextView android:id="@+id/file_name"
32+
style="@android:style/TextAppearance.Small"
33+
android:layout_width="wrap_content"
34+
android:layout_height="wrap_content"
35+
android:text="Position text bla bla bla bla bla more llines more more more lines"
36+
android:singleLine="false"
37+
android:maxLines="3"
38+
android:textStyle="bold"
39+
android:ellipsize="end"
40+
android:layout_gravity="left" />
41+
<TextView android:id="@+id/file_time"
42+
style="@android:style/TextAppearance.Small"
43+
android:layout_width="wrap_content"
44+
android:layout_height="wrap_content"
45+
android:text="Position text bla bla bla bla bla..."
46+
android:singleLine="false"
47+
android:maxLines="6"
48+
android:ellipsize="end"
49+
android:layout_gravity="left" />
50+
<TextView android:id="@+id/file_descr"
51+
style="@android:style/TextAppearance.Small"
52+
android:layout_width="wrap_content"
53+
android:layout_height="wrap_content"
54+
android:text="Position text bla bla bla bla bla..."
55+
android:singleLine="false"
56+
android:maxLines="6"
57+
android:ellipsize="end"
58+
android:layout_gravity="left" />
59+
</LinearLayout>
60+
</LinearLayout>
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Option item layout for CR3 options dialog
4+
-->
5+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6+
android:id="@+id/option_item_body"
7+
android:layout_width="fill_parent"
8+
android:layout_height="wrap_content"
9+
android:minHeight="?android:attr/listPreferredItemHeight"
10+
android:gravity="center_vertical"
11+
android:paddingRight="?android:attr/scrollbarSize"
12+
>
13+
14+
<ImageView
15+
android:id="@+id/option_icon"
16+
android:layout_width="wrap_content"
17+
android:layout_height="wrap_content"
18+
android:layout_gravity="center"
19+
/>
20+
21+
<RelativeLayout
22+
android:layout_width="wrap_content"
23+
android:layout_height="wrap_content"
24+
android:layout_marginLeft="15dip"
25+
android:layout_marginRight="6dip"
26+
android:layout_marginTop="6dip"
27+
android:layout_marginBottom="6dip"
28+
android:layout_weight="1">
29+
30+
<TextView android:id="@+id/option_label"
31+
android:layout_width="wrap_content"
32+
android:layout_height="wrap_content"
33+
android:singleLine="false"
34+
android:textAppearance="?android:attr/textAppearanceLarge"
35+
android:maxLines="3"
36+
/>
37+
<!--android:ellipsize="marquee"
38+
android:fadingEdge="horizontal"
39+
-->
40+
<TextView android:id="@+id/option_value"
41+
android:layout_width="wrap_content"
42+
android:layout_height="wrap_content"
43+
android:layout_below="@id/option_label"
44+
android:layout_alignLeft="@id/option_label"
45+
android:textAppearance="?android:attr/textAppearanceSmall"
46+
android:textColor="?android:attr/textColorSecondary"
47+
android:maxLines="4" />
48+
49+
</RelativeLayout>
50+
51+
</LinearLayout>

0 commit comments

Comments
 (0)