forked from github/szkolny
21 lines
589 B
XML
21 lines
589 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
~ Copyright (c) Kuba Szczodrzyński 2019-12-22.
|
||
|
-->
|
||
|
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
tools:layout_margin="8dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Hello world"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</layout>
|