2014-08-14 20:31:18 +09:30
|
|
|
<?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"
|
2015-04-14 16:53:48 -04:00
|
|
|
android:text="@string/swap_success"
|
2014-08-14 20:31:18 +09:30
|
|
|
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"
|
2015-04-14 16:53:48 -04:00
|
|
|
android:text="@string/swap_tap_for_details_and_install"
|
2014-08-14 20:31:18 +09:30
|
|
|
style="@style/SwapTheme.AppList.SwapSuccessDetails"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
</LinearLayout>
|