Files
andors-trail/AndorsTrail/res/layout/heroinfo_statsicons.xml
Oskar Wiksten 83d2a8bde0 Convert all code spaces to tabs.
* Yay for spaces-vs-tabs flamewar!
* Also removes trailing whitespaces in code
2013-07-23 16:36:26 +02:00

35 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:orientation="vertical" >
<TextView
android:id="@+id/heroinfo_stats_gold"
style="@style/statsBoxStyle"
android:layout_width="@dimen/boxshape_width"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ui_icon_coins"
android:text="@string/shop_yourgold"
/>
<TextView
android:id="@+id/heroinfo_stats_attack"
style="@style/statsBoxStyle"
android:layout_width="@dimen/boxshape_width"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/equip_weapon"
android:text="@string/actorinfo_attack"
/>
<TextView
android:id="@+id/heroinfo_stats_defense"
style="@style/statsBoxStyle"
android:layout_width="@dimen/boxshape_width"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/equip_shield"
android:text="@string/actorinfo_defense"
/>
</LinearLayout>