summaryrefslogtreecommitdiff
path: root/aboutit-sample/src/main/res/layout/activity_about.xml
blob: ddd48635c7202d12be301d568fb657803127fe11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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"
    tools:context="com.snilius.aboutit.sample.AboutActivity">

    <include layout="@layout/toolbar" />

    <TextView
        android:id="@+id/about_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/toolbar"
        android:padding="16dp"
        android:text="@string/hello_world" />

</RelativeLayout>