mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
Unlimited number of savegame slots. Added "quests" as tab to character screen. Added display type string to item info page (Quest item/Rare/Exceptional/Legendary). Bugfixes (thanks Samuel) Updated French translation (thanks Misty Soul) git-svn-id: https://andors-trail.googlecode.com/svn/trunk@137 08aca716-68be-ccc6-4d58-36f5abd142ac
83 lines
2.4 KiB
XML
83 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="right"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="@dimen/boxshape_width"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:background="@drawable/ui_boxshape"
|
|
android:layout_margin="@dimen/boxshape_margin"
|
|
android:padding="@dimen/boxshape_margin"
|
|
|
|
>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/icon_coins"
|
|
android:layout_marginRight="@dimen/boxshape_margin"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/heroinfo_stats_gold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/smalltext"
|
|
android:text="Gold: 0"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="@dimen/boxshape_width"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:background="@drawable/ui_boxshape"
|
|
android:layout_margin="@dimen/boxshape_margin"
|
|
android:padding="@dimen/boxshape_margin"
|
|
>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/equip_weapon"
|
|
android:layout_marginRight="@dimen/boxshape_margin"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/heroinfo_stats_attack"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/smalltext"
|
|
android:text="Atk: "
|
|
/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="@dimen/boxshape_width"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:background="@drawable/ui_boxshape"
|
|
android:layout_margin="@dimen/boxshape_margin"
|
|
android:padding="@dimen/boxshape_margin"
|
|
>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/equip_shield"
|
|
android:layout_marginRight="@dimen/boxshape_margin"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/heroinfo_stats_defense"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/smalltext"
|
|
android:text="Def: "
|
|
/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |