2014-07-03 07:48:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-12-24 05:39:21 +01:00
|
|
|
<!--
|
|
|
|
~ Twidere - Twitter client for Android
|
|
|
|
~
|
|
|
|
~ Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-04-15 20:40:28 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-12-24 05:39:21 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="@dimen/element_spacing_large"
|
|
|
|
android:paddingRight="@dimen/element_spacing_large">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="@dimen/icon_size_wizard_large"
|
|
|
|
android:layout_height="@dimen/icon_size_wizard_large"
|
|
|
|
android:contentDescription="@string/app_name"
|
|
|
|
android:padding="@dimen/element_spacing_large"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:src="@drawable/ic_launcher_web"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:lineSpacingMultiplier="1.25"
|
|
|
|
android:padding="@dimen/element_spacing_normal"
|
|
|
|
android:text="@string/wizard_page_finished_text"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textSize="@dimen/text_size_wizard_text"
|
|
|
|
android:textStyle="normal"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/exit_wizard"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:padding="@dimen/element_spacing_large">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:fontFamily="sans-serif-condensed"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="@android:string/ok"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textColor="?android:colorActivatedHighlight"
|
|
|
|
android:textSize="@dimen/text_size_wizard_nav_item"
|
2015-04-15 20:40:28 +02:00
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="UnusedAttribute"/>
|
2014-12-24 05:39:21 +01:00
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
</ScrollView>
|