Still need to complete Power creation, edition and listing. Need to complete Player listing and deletion.
58 lines
No EOL
2.1 KiB
XML
58 lines
No EOL
2.1 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:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/delete"
|
|
android:src="@drawable/ic_delete"
|
|
android:padding="5dp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:contentDescription="@string/edit" />
|
|
|
|
<TextView
|
|
tools:text="Happiness"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:id="@+id/name" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Melee 1"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:id="@+id/extra"
|
|
android:layout_below="@+id/name"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:id="@+id/keywords"
|
|
tools:text="(fire, explosion)"
|
|
android:paddingLeft="10dp"
|
|
android:layout_alignBottom="@id/extra"
|
|
android:layout_toRightOf="@+id/extra"
|
|
android:layout_toEndOf="@+id/extra" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:id="@+id/frequency"
|
|
android:layout_alignBottom="@+id/name"
|
|
android:layout_toRightOf="@+id/name"
|
|
android:layout_toEndOf="@+id/name"
|
|
android:paddingLeft="10dp"
|
|
tools:text="At will"/>
|
|
|
|
</RelativeLayout> |