mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 02:39:23 +02:00
24 lines
741 B
XML
24 lines
741 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
>
|
|
<EditText
|
|
android:id="@+id/string_preference_editor"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:paddingTop="16dip"
|
|
android:paddingLeft="8dip"
|
|
android:paddingRight="8dip"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/string_preference_hint"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dip"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
/>
|
|
</LinearLayout>
|