2014-08-19 15:37:44 +09:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_description"
|
2014-12-30 11:48:20 +11:00
|
|
|
android:text="@string/swap_introduction"
|
2014-08-14 20:31:18 +09:30
|
|
|
style="@style/SwapTheme.StartSwap.MainText"
|
2014-08-19 15:37:44 +09:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<Button
|
2014-06-20 21:44:42 +09:30
|
|
|
android:id="@+id/button_start_swap"
|
2014-12-30 11:48:20 +11:00
|
|
|
android:text="@string/swap_start"
|
2014-08-14 20:31:18 +09:30
|
|
|
style="@style/SwapTheme.StartSwap.StartButton"
|
2014-08-19 15:37:44 +09:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_below="@+id/text_description"
|
|
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|