BobStore/F-Droid/res/layout/swap_success_header.xml
Hans-Christoph Steiner 571e4a18e4 move all text bits to strings.xml so they are translatable
Inline text is not translatable, it is important to heed the lint warnings
about:

Hardcoded string "Swap success!", should use @string resource
2015-04-14 18:08:03 -04:00

30 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text_title"
android:text="@string/swap_success"
style="@style/SwapTheme.AppList.SwapSuccess"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/swap_success"
android:layout_gravity="center_horizontal" />
<TextView
android:id="@+id/text_description"
android:text="@string/swap_tap_for_details_and_install"
style="@style/SwapTheme.AppList.SwapSuccessDetails"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
</LinearLayout>