Files
andors-trail/AndorsTrail/res/layout/shopitemview.xml
oskar.wiksten 107a8543f1 initial release
git-svn-id: https://andors-trail.googlecode.com/svn/trunk@2 08aca716-68be-ccc6-4d58-36f5abd142ac
2010-11-04 21:10:57 +00:00

46 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/shopitem_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="1dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
/>
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/shopitem_shopbutton"
android:layout_width="wrap_content"
android:layout_height="@dimen/smalltext_buttonheight"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:text="Shop"
android:textSize="@dimen/smalltext"
/>
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/shopitem_infobutton"
android:layout_width="wrap_content"
android:layout_height="@dimen/smalltext_buttonheight"
android:layout_toLeftOf="@id/shopitem_shopbutton"
android:layout_centerVertical="true"
android:textSize="@dimen/smalltext"
android:text="@string/shop_infoitem"
/>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/shopitem_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/shopitem_image"
android:layout_toLeftOf="@id/shopitem_infobutton"
android:layout_centerVertical="true"
/>
</RelativeLayout>