Skip to content

Commit 9567346

Browse files
committed
补上次提交
1 parent 4b1dde1 commit 9567346

12 files changed

+139
-0
lines changed
Loading
Loading
Loading
Loading
Loading
Loading
Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:layout_width="match_parent"
5+
android:layout_height="match_parent"
6+
7+
android:orientation="vertical">
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="wrap_content"
12+
android:background="@color/white"
13+
android:orientation="vertical"
14+
android:paddingLeft="22dp">
15+
16+
<HorizontalScrollView
17+
android:layout_width="match_parent"
18+
android:layout_height="wrap_content"
19+
android:scrollbars="none">
20+
21+
<LinearLayout
22+
android:layout_width="wrap_content"
23+
android:layout_height="match_parent"
24+
android:gravity="center"
25+
android:orientation="horizontal">
26+
27+
<TextView
28+
29+
android:id="@+id/tv_share_qq"
30+
style="@style/ShareIcon"
31+
android:layout_width="wrap_content"
32+
android:layout_height="wrap_content"
33+
android:drawableTop="@drawable/ic_share_qq"
34+
android:text="@string/qq"/>
35+
36+
<TextView
37+
android:id="@+id/tv_share_qzone"
38+
style="@style/ShareIcon"
39+
android:layout_width="wrap_content"
40+
android:layout_height="wrap_content"
41+
android:drawableTop="@drawable/ic_share_qzone"
42+
android:text="@string/qzone"/>
43+
44+
<TextView
45+
android:id="@+id/tv_share_wechat"
46+
style="@style/ShareIcon"
47+
android:layout_width="wrap_content"
48+
android:layout_height="wrap_content"
49+
android:drawableTop="@drawable/ic_share_wechat"
50+
android:text="@string/wechat"/>
51+
52+
<TextView
53+
android:id="@+id/tv_share_wechat_sns"
54+
style="@style/ShareIcon"
55+
android:layout_width="wrap_content"
56+
android:layout_height="wrap_content"
57+
android:drawableTop="@drawable/ic_share_wechat_sns"
58+
android:text="@string/wechat_sns"/>
59+
60+
61+
<TextView
62+
android:id="@+id/tv_share_sina"
63+
style="@style/ShareIcon"
64+
android:layout_width="wrap_content"
65+
android:layout_height="wrap_content"
66+
android:drawableTop="@drawable/ic_share_sina"
67+
android:text="@string/sina"/>
68+
69+
70+
</LinearLayout>
71+
</HorizontalScrollView>
72+
73+
<View
74+
android:id="@+id/view_divider"
75+
android:layout_width="match_parent"
76+
android:layout_height="0.5dp"
77+
android:layout_marginRight="22dp"
78+
android:background="@color/dividerColor"/>
79+
80+
81+
<HorizontalScrollView
82+
android:id="@+id/hl_ext_action_layout"
83+
android:layout_width="match_parent"
84+
android:layout_height="wrap_content"
85+
android:scrollbars="none">
86+
87+
<LinearLayout
88+
android:layout_width="wrap_content"
89+
android:layout_height="match_parent"
90+
android:orientation="horizontal">
91+
92+
93+
<TextView
94+
android:id="@+id/tv_share_source"
95+
style="@style/ShareIcon"
96+
android:layout_width="wrap_content"
97+
android:layout_height="wrap_content"
98+
android:drawableTop="@drawable/ic_share_text"
99+
android:text="@string/view_source"/>
100+
101+
<TextView
102+
android:id="@+id/tv_share_link"
103+
style="@style/ShareIcon"
104+
android:layout_width="wrap_content"
105+
android:layout_height="wrap_content"
106+
android:drawableTop="@drawable/ic_share_link"
107+
android:text="@string/copy_link"/>
108+
109+
<TextView
110+
android:id="@+id/tv_share_browser"
111+
style="@style/ShareIcon"
112+
android:layout_width="wrap_content"
113+
android:layout_height="wrap_content"
114+
android:drawableTop="@drawable/ic_share_browser"
115+
android:text="@string/open_browser"/>
116+
117+
<TextView
118+
android:id="@+id/tv_share_night"
119+
style="@style/ShareIcon"
120+
android:layout_width="wrap_content"
121+
android:layout_height="wrap_content"
122+
android:drawableTop="@drawable/ic_share_night"
123+
android:text="@string/night_mode"/>
124+
125+
</LinearLayout>
126+
</HorizontalScrollView>
127+
128+
129+
</LinearLayout>
130+
131+
<Button
132+
android:id="@+id/btn_share_cancel"
133+
android:layout_width="match_parent"
134+
android:layout_height="@dimen/button_height"
135+
android:background="@drawable/bg_button_while"
136+
android:text="@string/cancel"
137+
android:textColor="@color/ph1"
138+
android:textSize="@dimen/h1"/>
139+
</LinearLayout>

0 commit comments

Comments
 (0)