wedroid/app/src/main/res/layout/activity_board_view.xml

35 lines
1014 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Space
android:layout_width="match_parent"
android:layout_height="27dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/title_board"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Board title: " />
<Space
android:layout_width="match_parent"
android:layout_height="27dp" />
<Button
android:id="@+id/getLists"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Get lists" />
</LinearLayout>
</LinearLayout>