You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clover/Chan/res/layout/board_view.xml

28 lines
944 B

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/board_view_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
android:gravity="center_vertical"
android:paddingLeft="24dp"
android:paddingRight="24dp"
android:minHeight="60dp"
/>
<Button
android:id="@+id/board_view_delete"
android:layout_alignParentRight="true"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_height="40dp"
android:layout_width="40dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:background="@drawable/ic_action_discard" />
</RelativeLayout>