mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-19 10:04:52 +01:00
Add "All" button to bulk selection interface. Do not show bulk selection interface when dropping just one item. Confirmation dialog when overwriting savegames with a new player name (thanks ejwessel) Hide critical multiplier if equal to 0 or 1. Do not trigger map events if the player moves to another tile on the same mapevent. Add LayoutParams to all dynamically generated views (reduces graphical artifacts on Motorola devices) Use wrap_content instead of match_parent as height on listviews (reduces graphical artifacts on Motorola devices) git-svn-id: https://andors-trail.googlecode.com/svn/trunk@142 08aca716-68be-ccc6-4d58-36f5abd142ac
28 lines
1.1 KiB
XML
28 lines
1.1 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:orientation="horizontal"
|
|
android:gravity="center"
|
|
>
|
|
<com.gpl.rpg.AndorsTrail.view.QuickButton
|
|
android:id="@+id/quickitemview_item1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:longClickable="true"/>
|
|
<com.gpl.rpg.AndorsTrail.view.QuickButton
|
|
android:id="@+id/quickitemview_item2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:longClickable="true"/>
|
|
<com.gpl.rpg.AndorsTrail.view.QuickButton
|
|
android:id="@+id/quickitemview_item3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:longClickable="true"/>
|
|
</LinearLayout>
|