mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-16 08:40:57 +01:00
git-svn-id: https://andors-trail.googlecode.com/svn/trunk@153 08aca716-68be-ccc6-4d58-36f5abd142ac
69 lines
2.1 KiB
XML
69 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
|
|
<TextView
|
|
android:text="@string/iteminfo_effect_works_when_equipped"
|
|
android:id="@+id/itemeffect_onequip_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<com.gpl.rpg.AndorsTrail.view.AbilityModifierInfoView
|
|
android:id="@+id/itemeffect_onequip_abilitymodifierinfo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
/>
|
|
|
|
<com.gpl.rpg.AndorsTrail.view.ActorConditionEffectList
|
|
android:id="@+id/itemeffect_onequip_conditions"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
/>
|
|
|
|
<TextView
|
|
android:text="@string/iteminfo_effect_works_when_used"
|
|
android:id="@+id/itemeffect_onuse_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
<com.gpl.rpg.AndorsTrail.view.ItemEffectsView_OnUse
|
|
android:id="@+id/itemeffect_onuse"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
/>
|
|
|
|
<TextView
|
|
android:text="@string/iteminfo_effect_works_when_hitting_target"
|
|
android:id="@+id/itemeffect_onhit_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
<com.gpl.rpg.AndorsTrail.view.ItemEffectsView_OnUse
|
|
android:id="@+id/itemeffect_onhit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
/>
|
|
|
|
<TextView
|
|
android:text="@string/iteminfo_effect_works_when_killing_target"
|
|
android:id="@+id/itemeffect_onkill_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
<com.gpl.rpg.AndorsTrail.view.ItemEffectsView_OnUse
|
|
android:id="@+id/itemeffect_onkill"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
/>
|
|
|
|
</merge>
|