removed some unused resources and fixed linting errors
This commit is contained in:
parent
b470f5e939
commit
6adf592199
16 changed files with 21 additions and 40 deletions
|
|
@ -10,6 +10,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="4dp"
|
||||
android:hint="@string/add_word_field_placeholder"
|
||||
android:inputType="text"
|
||||
android:imeOptions="actionSend"
|
||||
android:privateImeOptions="io.github.sspanak.tt9.addword=true"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
|
@ -30,7 +31,8 @@
|
|||
android:focusable="false"
|
||||
android:longClickable="true"
|
||||
android:text="⚙"
|
||||
android:textSize="24sp"/>
|
||||
android:textSize="@dimen/soft_key_icon_size"
|
||||
tools:ignore="HardcodedText,KeyboardInaccessibleWidget" />
|
||||
|
||||
<View
|
||||
android:id="@+id/main_separator_left"
|
||||
|
|
@ -46,7 +48,8 @@
|
|||
android:clickable="true"
|
||||
android:focusable="false"
|
||||
android:longClickable="true"
|
||||
android:text="@android:string/ok" />
|
||||
android:text="@android:string/ok"
|
||||
tools:ignore="ButtonOrder,KeyboardInaccessibleWidget" />
|
||||
|
||||
<View
|
||||
android:id="@+id/main_separator_right"
|
||||
|
|
@ -63,7 +66,8 @@
|
|||
android:focusable="false"
|
||||
android:longClickable="true"
|
||||
android:text="⌫"
|
||||
android:textSize="24sp" />
|
||||
android:textSize="@dimen/soft_key_icon_size"
|
||||
tools:ignore="HardcodedText,KeyboardInaccessibleWidget" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/preferences_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
tools:context=".preferences.screens.MainSettingsScreen">
|
||||
</FrameLayout>
|
||||
tools:context=".preferences.screens.MainSettingsScreen"
|
||||
android:orientation="vertical">
|
||||
</LinearLayout>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue