Buddhism/app/src/main/res/layout/content_main.xml
Gabriel Tofvesson 826e569e85 Removed settings menu.
Set up an automatic (and slick) tutorial.
Added Swedish localization.
Added the questions. (Localized)
2016-02-24 23:18:44 +01:00

43 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.gabriel.buddhism.MainActivity"
tools:showIn="@layout/app_bar_main"
android:id="@+id/main_parent">
<RelativeLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/Welcome1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="17sp"
android:text="@string/welcome1" />
<TextView
android:id="@+id/Welcome2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15sp"
android:layout_below="@id/Welcome1"
android:textSize="17sp"
android:text="@string/welcome2"/>
<TextView
android:id="@+id/signoff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15sp"
android:layout_below="@id/Welcome2"
android:textSize="15sp"
android:text="@string/signoff"/>
</RelativeLayout>
</RelativeLayout>