mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-21 19:08:30 +01:00
New graphics for red damage animation. Added better script triggers to Mikhail's conversation while doing the bread and rats quests. Start outline of new minor quest for v0.6.11 (sisterfight). Re-spawn monsters that were not unique in v0.6.10 (issue 301). git-svn-id: https://andors-trail.googlecode.com/svn/trunk@225 08aca716-68be-ccc6-4d58-36f5abd142ac
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?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="wrap_content"
|
|
>
|
|
<ImageView
|
|
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
|
|
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="@string/shop_buy"
|
|
android:textSize="@dimen/smalltext"
|
|
/>
|
|
<Button
|
|
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
|
|
android:id="@+id/shopitem_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/shopitem_image"
|
|
android:layout_toLeftOf="@id/shopitem_infobutton"
|
|
android:layout_centerVertical="true"
|
|
/>
|
|
</RelativeLayout>
|