move fiexed strings into strings.xml files

This commit is contained in:
jacques 2020-07-07 21:37:20 +02:00
parent 1397d4b868
commit a5c768670a

View file

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Enter CIP 13"
android:id="@+id/textView" />
android:text="@string/enter_cip_13"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/edittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Enter text here.."
android:hint="@string/enter_cip_13_here"
android:inputType="number"
android:padding="10dp" />
</LinearLayout>