mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-23 06:21:31 +01:00
Add empty imageview placeholders for the icons
They have `visibility="gone"` so the layout looks unchanged
This commit is contained in:
parent
b46c9d76d3
commit
81269989a1
1 changed files with 59 additions and 1 deletions
|
@ -36,12 +36,21 @@
|
|||
android:text="@string/settings_choose_up"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_up_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_up_btn"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/settings_choose_btn"
|
||||
android:textAllCaps="false" />
|
||||
android:textAllCaps="false"
|
||||
android:visibility="visible" />
|
||||
|
||||
</TableRow>
|
||||
|
||||
<TableRow
|
||||
|
@ -58,6 +67,13 @@
|
|||
android:text="@string/settings_choose_down"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_down_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_down_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -81,6 +97,13 @@
|
|||
android:text="@string/settings_choose_left"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_left_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_left_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -103,6 +126,13 @@
|
|||
android:text="@string/settings_choose_right"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_right_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_right_btn"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -126,6 +156,13 @@
|
|||
android:text="@string/settings_choose_vol_up"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_vol_up_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_vol_up_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -148,6 +185,13 @@
|
|||
android:text="@string/settings_choose_vol_down"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_vol_down_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_vol_down_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -171,6 +215,13 @@
|
|||
android:text="@string/settings_choose_double_click"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_double_click_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_double_click_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -194,6 +245,13 @@
|
|||
android:text="@string/settings_choose_long_click"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_settings_apps_long_click_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dip"
|
||||
android:visibility="gone"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/fragment_settings_apps_choose_long_click_btn"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
Loading…
Add table
Reference in a new issue