mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-22 11:25:35 +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
46 lines
1.2 KiB
XML
46 lines
1.2 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"
|
|
>
|
|
|
|
<ListView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:choiceMode="none"
|
|
android:footerDividersEnabled="false"
|
|
android:id="@+id/conversation_statements"
|
|
android:transcriptMode="alwaysScroll"
|
|
android:padding="@dimen/dialog_margin"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
style="@android:style/ButtonBar"
|
|
>
|
|
|
|
<Button
|
|
android:id="@+id/conversation_next"
|
|
android:layout_width="0dip"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/conversation_next"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/conversation_leave"
|
|
android:layout_width="0dip"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/conversation_leave"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|