mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-24 05:11:15 +00:00
45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="16dp"
|
||
|
tools:context="com.nutomic.syncthingandroid.activities.FirstStartActivity">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/welcome_title"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:gravity="center"
|
||
|
android:textColor="@color/primary_dark"
|
||
|
android:textSize="30sp"
|
||
|
android:layout_margin="30dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/welcome_text"
|
||
|
android:layout_below="@id/title"
|
||
|
android:textSize="16sp"
|
||
|
android:lineSpacingExtra="5sp"
|
||
|
android:layout_marginStart="30dp"
|
||
|
android:layout_marginLeft="30dp"
|
||
|
android:layout_marginEnd="30dp"
|
||
|
android:layout_marginRight="30dp" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/cont"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/cont"
|
||
|
android:background="?android:selectableItemBackground"
|
||
|
android:textColor="@color/accent"
|
||
|
android:layout_alignParentEnd="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_alignParentBottom="true"/>
|
||
|
|
||
|
</RelativeLayout>
|