mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-02 01:36:11 +01:00
Huge clean-up. Separation between themes and style. Preparatory work for theme inheritance and alternative themes made by derivation. Problem: due to a pre-lollipop bug, I still have to remove some color indirections through attributes, as they are not preperly resolved.
96 lines
3.8 KiB
XML
96 lines
3.8 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="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/actorconditioninfo_title"
|
|
style="@style/titleWithIcon"
|
|
android:background="?attr/ui_theme_richframe_bitmap"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/equip_weapon"
|
|
android:text="@string/actorinfo_currentconditions" />
|
|
|
|
<ScrollView
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/dialog_margin" >
|
|
|
|
<TextView
|
|
android:id="@+id/actorconditioninfo_category"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/section_margin"
|
|
android:text="@string/actorconditioninfo_category" />
|
|
|
|
<TextView
|
|
android:id="@+id/actorconditioninfo_constant_effect_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/actorconditioninfo_constant_effect" />
|
|
|
|
<com.gpl.rpg.AndorsTrail.view.AbilityModifierInfoView
|
|
android:id="@+id/actorconditioninfo_constant_effect_abilitymodifierinfo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/actorconditioninfo_everyround_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/actorconditioninfo_effect_every_round" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/actorconditioninfo_everyround_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
android:orientation="vertical" >
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/actorconditioninfo_everyfullround_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/actorconditioninfo_effect_every_full_round" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/actorconditioninfo_everyfullround_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
android:orientation="vertical" >
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
<!-- Workaround http://code.google.com/p/andors-trail/issues/detail?id=242 -->
|
|
|
|
<ListView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent" />
|
|
|
|
<LinearLayout
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
android:id="@+id/actorconditioninfo_close"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dialog_close" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |