[merge] Fix new layout crash
Change-Id: I662d6e394db1fb95181e7aa25ed82045495d8b41
This commit is contained in:
parent
49a9d17521
commit
5c276966f4
|
@ -198,4 +198,5 @@
|
||||||
<string name="settings_follow_system_locale">Follow system language</string>
|
<string name="settings_follow_system_locale">Follow system language</string>
|
||||||
<string name="settings_follow_system_locale_summary">When changing the system language, also change the app\'s language</string>
|
<string name="settings_follow_system_locale_summary">When changing the system language, also change the app\'s language</string>
|
||||||
|
|
||||||
|
<string name="labs_enable_new_app_layout_summary_sc">Element\'s new simplified layout with optional tabs</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -43,4 +43,36 @@
|
||||||
app:iconTint="?vctr_content_secondary"
|
app:iconTint="?vctr_content_secondary"
|
||||||
app:showAsAction="ifRoom" />
|
app:showAsAction="ifRoom" />
|
||||||
|
|
||||||
|
<item
|
||||||
|
android:id="@+id/dev_theming"
|
||||||
|
android:title="@string/settings_theme"
|
||||||
|
android:visible="false"
|
||||||
|
tools:visible="true"
|
||||||
|
app:showAsAction="never">
|
||||||
|
<menu>
|
||||||
|
<group>
|
||||||
|
<item
|
||||||
|
android:id="@+id/dev_base_theme"
|
||||||
|
android:title="@string/settings_theme">
|
||||||
|
<!-- Programmatically inflated menu -->
|
||||||
|
<menu>
|
||||||
|
<group
|
||||||
|
android:id="@+id/dev_base_theme_group"
|
||||||
|
android:checkableBehavior="single" />
|
||||||
|
</menu>
|
||||||
|
</item>
|
||||||
|
<item
|
||||||
|
android:id="@+id/dev_theme_accent"
|
||||||
|
android:title="@string/setting_sc_accent_color">
|
||||||
|
<!-- Programmatically inflated menu -->
|
||||||
|
<menu>
|
||||||
|
<group
|
||||||
|
android:id="@+id/dev_theme_accent_group"
|
||||||
|
android:checkableBehavior="single" />
|
||||||
|
</menu>
|
||||||
|
</item>
|
||||||
|
</group>
|
||||||
|
</menu>
|
||||||
|
</item>
|
||||||
|
|
||||||
</menu>
|
</menu>
|
||||||
|
|
|
@ -157,7 +157,7 @@
|
||||||
<im.vector.app.core.preference.VectorSwitchPreference
|
<im.vector.app.core.preference.VectorSwitchPreference
|
||||||
android:defaultValue="@bool/settings_labs_new_app_layout_default"
|
android:defaultValue="@bool/settings_labs_new_app_layout_default"
|
||||||
android:key="SETTINGS_LABS_NEW_APP_LAYOUT_KEY"
|
android:key="SETTINGS_LABS_NEW_APP_LAYOUT_KEY"
|
||||||
android:summary="@string/labs_enable_new_app_layout_summary"
|
android:summary="@string/labs_enable_new_app_layout_summary_sc"
|
||||||
android:title="@string/labs_enable_new_app_layout_title" />
|
android:title="@string/labs_enable_new_app_layout_title" />
|
||||||
|
|
||||||
</im.vector.app.core.preference.VectorPreferenceCategory>
|
</im.vector.app.core.preference.VectorPreferenceCategory>
|
||||||
|
|
Loading…
Reference in New Issue