Skip to content

Commit 46c6ad3

Browse files
committed
tts: whitespace-only change in preparation of small refactor of toolbar
1 parent e64fb78 commit 46c6ad3

1 file changed

Lines changed: 175 additions & 175 deletions

File tree

android/res/layout/tts_toolbar.xml

Lines changed: 175 additions & 175 deletions
Original file line numberDiff line numberDiff line change
@@ -10,182 +10,182 @@
1010
android:baselineAligned="true"
1111
android:orientation="vertical">
1212

13-
<LinearLayout
14-
android:id="@+id/tts_toolbar_buttons"
15-
android:layout_width="fill_parent"
16-
android:layout_height="wrap_content"
17-
android:baselineAligned="true"
18-
android:orientation="horizontal">
19-
20-
<ImageButton
21-
android:id="@+id/tts_play_pause"
22-
android:layout_width="0dip"
13+
<LinearLayout
14+
android:id="@+id/tts_toolbar_buttons"
15+
android:layout_width="fill_parent"
2316
android:layout_height="wrap_content"
24-
android:layout_marginLeft="2dip"
25-
android:layout_marginTop="5dip"
26-
android:layout_marginRight="2dip"
27-
android:layout_marginBottom="5dip"
28-
android:layout_weight="1"
29-
android:contentDescription="@string/tts_play"
30-
android:focusable="false"
31-
android:focusableInTouchMode="false"
32-
android:src="?attr/ic_media_play_drawable" />
33-
34-
<ImageButton
35-
android:id="@+id/tts_back"
36-
android:layout_width="0dip"
17+
android:baselineAligned="true"
18+
android:orientation="horizontal">
19+
20+
<ImageButton
21+
android:id="@+id/tts_play_pause"
22+
android:layout_width="0dip"
23+
android:layout_height="wrap_content"
24+
android:layout_marginLeft="2dip"
25+
android:layout_marginTop="5dip"
26+
android:layout_marginRight="2dip"
27+
android:layout_marginBottom="5dip"
28+
android:layout_weight="1"
29+
android:contentDescription="@string/tts_play"
30+
android:focusable="false"
31+
android:focusableInTouchMode="false"
32+
android:src="?attr/ic_media_play_drawable" />
33+
34+
<ImageButton
35+
android:id="@+id/tts_back"
36+
android:layout_width="0dip"
37+
android:layout_height="wrap_content"
38+
android:layout_marginLeft="2dip"
39+
android:layout_marginTop="5dip"
40+
android:layout_marginRight="2dip"
41+
android:layout_marginBottom="5dip"
42+
android:layout_weight="1"
43+
android:contentDescription="@string/tts_back"
44+
android:focusable="false"
45+
android:focusableInTouchMode="false"
46+
android:src="?attr/ic_media_rew_drawable" />
47+
48+
<ImageButton
49+
android:id="@+id/tts_forward"
50+
android:layout_width="0dip"
51+
android:layout_height="wrap_content"
52+
android:layout_marginLeft="2dip"
53+
android:layout_marginTop="5dip"
54+
android:layout_marginRight="2dip"
55+
android:layout_marginBottom="5dip"
56+
android:layout_weight="1"
57+
android:contentDescription="@string/tts_forward"
58+
android:focusable="false"
59+
android:focusableInTouchMode="false"
60+
android:src="?attr/ic_media_ff_drawable" />
61+
62+
<ImageButton
63+
android:id="@+id/tts_stop"
64+
android:layout_width="0dip"
65+
android:layout_height="wrap_content"
66+
android:layout_marginLeft="2dip"
67+
android:layout_marginTop="5dip"
68+
android:layout_marginRight="2dip"
69+
android:layout_marginBottom="5dip"
70+
android:layout_weight="1"
71+
android:contentDescription="@string/tts_stop"
72+
android:focusable="false"
73+
android:focusableInTouchMode="false"
74+
android:src="?attr/ic_media_stop_drawable" />
75+
76+
<ImageButton
77+
android:id="@+id/tts_options"
78+
android:layout_width="wrap_content"
79+
android:layout_height="wrap_content"
80+
android:layout_marginLeft="2dip"
81+
android:layout_marginTop="5dip"
82+
android:layout_marginRight="2dip"
83+
android:layout_marginBottom="5dip"
84+
android:layout_weight="0"
85+
android:contentDescription="@string/tts_options"
86+
android:focusable="false"
87+
android:focusableInTouchMode="false"
88+
android:src="?attr/cr3_viewer_settings_drawable" />
89+
</LinearLayout>
90+
91+
<LinearLayout
92+
android:layout_width="fill_parent"
3793
android:layout_height="wrap_content"
38-
android:layout_marginLeft="2dip"
39-
android:layout_marginTop="5dip"
40-
android:layout_marginRight="2dip"
41-
android:layout_marginBottom="5dip"
42-
android:layout_weight="1"
43-
android:contentDescription="@string/tts_back"
44-
android:focusable="false"
45-
android:focusableInTouchMode="false"
46-
android:src="?attr/ic_media_rew_drawable" />
47-
48-
<ImageButton
49-
android:id="@+id/tts_forward"
50-
android:layout_width="0dip"
94+
android:baselineAligned="true"
95+
android:orientation="horizontal">
96+
97+
<ImageButton
98+
android:id="@+id/btn_dec_volume"
99+
android:layout_width="wrap_content"
100+
android:layout_height="wrap_content"
101+
android:layout_marginStart="2dp"
102+
android:layout_marginLeft="2dp"
103+
android:contentDescription="@string/btn_decrease"
104+
android:padding="1dp"
105+
android:src="?attr/cr3_button_dec_drawable" />
106+
107+
<TextView
108+
android:id="@+id/tts_lbl_volume"
109+
android:layout_width="0dip"
110+
android:layout_height="wrap_content"
111+
android:layout_marginLeft="5dip"
112+
android:layout_marginTop="5dip"
113+
android:layout_marginRight="5dip"
114+
android:layout_marginBottom="2dip"
115+
android:layout_weight="1"
116+
android:text="@string/tts_volume" />
117+
118+
<ImageButton
119+
android:id="@+id/btn_inc_volume"
120+
android:layout_width="wrap_content"
121+
android:layout_height="wrap_content"
122+
android:layout_marginEnd="10dp"
123+
android:layout_marginRight="10dp"
124+
android:contentDescription="@string/btn_increase"
125+
android:padding="1dp"
126+
android:src="?attr/cr3_button_inc_drawable" />
127+
128+
<ImageButton
129+
android:id="@+id/btn_dec_speed"
130+
android:layout_width="wrap_content"
131+
android:layout_height="wrap_content"
132+
android:layout_marginStart="10dp"
133+
android:layout_marginLeft="10dp"
134+
android:contentDescription="@string/btn_decrease"
135+
android:padding="1dp"
136+
android:src="?attr/cr3_button_dec_drawable" />
137+
138+
<TextView
139+
android:id="@+id/tts_lbl_speed"
140+
android:layout_width="0dip"
141+
android:layout_height="wrap_content"
142+
android:layout_marginLeft="5dip"
143+
android:layout_marginTop="5dip"
144+
android:layout_marginRight="5dip"
145+
android:layout_marginBottom="2dip"
146+
android:layout_weight="1"
147+
android:text="@string/tts_rate" />
148+
149+
<ImageButton
150+
android:id="@+id/btn_inc_speed"
151+
android:layout_width="wrap_content"
152+
android:layout_height="wrap_content"
153+
android:layout_marginEnd="2dp"
154+
android:layout_marginRight="2dp"
155+
android:contentDescription="@string/btn_increase"
156+
android:padding="1dp"
157+
android:src="?attr/cr3_button_inc_drawable" />
158+
159+
</LinearLayout>
160+
161+
<LinearLayout
162+
android:layout_width="fill_parent"
51163
android:layout_height="wrap_content"
52-
android:layout_marginLeft="2dip"
53-
android:layout_marginTop="5dip"
54-
android:layout_marginRight="2dip"
55-
android:layout_marginBottom="5dip"
56-
android:layout_weight="1"
57-
android:contentDescription="@string/tts_forward"
58-
android:focusable="false"
59-
android:focusableInTouchMode="false"
60-
android:src="?attr/ic_media_ff_drawable" />
61-
62-
<ImageButton
63-
android:id="@+id/tts_stop"
64-
android:layout_width="0dip"
65-
android:layout_height="wrap_content"
66-
android:layout_marginLeft="2dip"
67-
android:layout_marginTop="5dip"
68-
android:layout_marginRight="2dip"
69-
android:layout_marginBottom="5dip"
70-
android:layout_weight="1"
71-
android:contentDescription="@string/tts_stop"
72-
android:focusable="false"
73-
android:focusableInTouchMode="false"
74-
android:src="?attr/ic_media_stop_drawable" />
75-
76-
<ImageButton
77-
android:id="@+id/tts_options"
78-
android:layout_width="wrap_content"
79-
android:layout_height="wrap_content"
80-
android:layout_marginLeft="2dip"
81-
android:layout_marginTop="5dip"
82-
android:layout_marginRight="2dip"
83-
android:layout_marginBottom="5dip"
84-
android:layout_weight="0"
85-
android:contentDescription="@string/tts_options"
86-
android:focusable="false"
87-
android:focusableInTouchMode="false"
88-
android:src="?attr/cr3_viewer_settings_drawable" />
89-
</LinearLayout>
90-
91-
<LinearLayout
92-
android:layout_width="fill_parent"
93-
android:layout_height="wrap_content"
94-
android:baselineAligned="true"
95-
android:orientation="horizontal">
96-
97-
<ImageButton
98-
android:id="@+id/btn_dec_volume"
99-
android:layout_width="wrap_content"
100-
android:layout_height="wrap_content"
101-
android:layout_marginStart="2dp"
102-
android:layout_marginLeft="2dp"
103-
android:contentDescription="@string/btn_decrease"
104-
android:padding="1dp"
105-
android:src="?attr/cr3_button_dec_drawable" />
106-
107-
<TextView
108-
android:id="@+id/tts_lbl_volume"
109-
android:layout_width="0dip"
110-
android:layout_height="wrap_content"
111-
android:layout_marginLeft="5dip"
112-
android:layout_marginTop="5dip"
113-
android:layout_marginRight="5dip"
114-
android:layout_marginBottom="2dip"
115-
android:layout_weight="1"
116-
android:text="@string/tts_volume" />
117-
118-
<ImageButton
119-
android:id="@+id/btn_inc_volume"
120-
android:layout_width="wrap_content"
121-
android:layout_height="wrap_content"
122-
android:layout_marginEnd="10dp"
123-
android:layout_marginRight="10dp"
124-
android:contentDescription="@string/btn_increase"
125-
android:padding="1dp"
126-
android:src="?attr/cr3_button_inc_drawable" />
127-
128-
<ImageButton
129-
android:id="@+id/btn_dec_speed"
130-
android:layout_width="wrap_content"
131-
android:layout_height="wrap_content"
132-
android:layout_marginStart="10dp"
133-
android:layout_marginLeft="10dp"
134-
android:contentDescription="@string/btn_decrease"
135-
android:padding="1dp"
136-
android:src="?attr/cr3_button_dec_drawable" />
137-
138-
<TextView
139-
android:id="@+id/tts_lbl_speed"
140-
android:layout_width="0dip"
141-
android:layout_height="wrap_content"
142-
android:layout_marginLeft="5dip"
143-
android:layout_marginTop="5dip"
144-
android:layout_marginRight="5dip"
145-
android:layout_marginBottom="2dip"
146-
android:layout_weight="1"
147-
android:text="@string/tts_rate" />
148-
149-
<ImageButton
150-
android:id="@+id/btn_inc_speed"
151-
android:layout_width="wrap_content"
152-
android:layout_height="wrap_content"
153-
android:layout_marginEnd="2dp"
154-
android:layout_marginRight="2dp"
155-
android:contentDescription="@string/btn_increase"
156-
android:padding="1dp"
157-
android:src="?attr/cr3_button_inc_drawable" />
158-
159-
</LinearLayout>
160-
161-
<LinearLayout
162-
android:layout_width="fill_parent"
163-
android:layout_height="wrap_content"
164-
android:baselineAligned="true"
165-
android:orientation="horizontal">
166-
167-
<SeekBar
168-
android:id="@+id/tts_sb_volume"
169-
android:layout_width="0dip"
170-
android:layout_height="wrap_content"
171-
android:layout_marginStart="2dip"
172-
android:layout_marginLeft="2dip"
173-
android:layout_marginTop="5dip"
174-
android:layout_marginEnd="10dip"
175-
android:layout_marginRight="10dip"
176-
android:layout_marginBottom="5dip"
177-
android:layout_weight="1" />
178-
179-
<SeekBar
180-
android:id="@+id/tts_sb_speed"
181-
android:layout_width="0dip"
182-
android:layout_height="wrap_content"
183-
android:layout_marginStart="10dip"
184-
android:layout_marginLeft="10dip"
185-
android:layout_marginTop="5dip"
186-
android:layout_marginEnd="2dip"
187-
android:layout_marginRight="2dip"
188-
android:layout_marginBottom="5dip"
189-
android:layout_weight="1" />
164+
android:baselineAligned="true"
165+
android:orientation="horizontal">
166+
167+
<SeekBar
168+
android:id="@+id/tts_sb_volume"
169+
android:layout_width="0dip"
170+
android:layout_height="wrap_content"
171+
android:layout_marginStart="2dip"
172+
android:layout_marginLeft="2dip"
173+
android:layout_marginTop="5dip"
174+
android:layout_marginEnd="10dip"
175+
android:layout_marginRight="10dip"
176+
android:layout_marginBottom="5dip"
177+
android:layout_weight="1" />
178+
179+
<SeekBar
180+
android:id="@+id/tts_sb_speed"
181+
android:layout_width="0dip"
182+
android:layout_height="wrap_content"
183+
android:layout_marginStart="10dip"
184+
android:layout_marginLeft="10dip"
185+
android:layout_marginTop="5dip"
186+
android:layout_marginEnd="2dip"
187+
android:layout_marginRight="2dip"
188+
android:layout_marginBottom="5dip"
189+
android:layout_weight="1" />
190+
</LinearLayout>
190191
</LinearLayout>
191-
</LinearLayout>

0 commit comments

Comments
 (0)