aboutsummaryrefslogtreecommitdiff
path: root/ime/app/src/main/res/layout/user_interface_root_settings.xml
blob: e03be2c65957aafebb0c05d0cf15b5d4717dfe4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    style="@style/Ask.SettingsRootLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="0px">

    <include layout="@layout/demo_keyboard_include_layout" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        android:fillViewport="true"
        android:paddingTop="@dimen/global_content_padding_bottom"
        android:paddingBottom="@dimen/global_content_padding_bottom"
        android:scrollbarStyle="outsideOverlay">

        <LinearLayout
            android:id="@+id/settings_root"
            style="@style/Ask.SettingsRootLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:weightSum="3">

            <net.evendanan.pixel.SettingsTileView
                android:id="@+id/settings_tile_themes"
                style="@style/Ask.SettingsTileLayout"
                app:tileImage="@drawable/ic_ui_themes"
                app:tileLabel="@string/ui_theme_settings_tile" />

            <net.evendanan.pixel.SettingsTileView
                android:id="@+id/settings_tile_effects"
                style="@style/Ask.SettingsTileLayout"
                app:tileImage="@drawable/ic_ui_effects"
                app:tileLabel="@string/ui_effects_settings_tile" />

            <net.evendanan.pixel.SettingsTileView
                android:id="@+id/settings_tile_even_more"
                style="@style/Ask.SettingsTileLayout"
                app:tileImage="@drawable/ic_language_root_tweaks"
                app:tileLabel="@string/language_tweaks_settings_tile" />
        </LinearLayout>
    </ScrollView>
</LinearLayout>