Files
andors-trail/AndorsTrail/res/layout/conversation.xml
oskar.wiksten 65664d5c47 Corrections to horizontal alignment issues on Samsung Galaxy S2. (Issue 242)
Updated authors list.

git-svn-id: https://andors-trail.googlecode.com/svn/trunk@154 08aca716-68be-ccc6-4d58-36f5abd142ac
2011-09-09 19:03:27 +00:00

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="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<ListView
android:layout_width="match_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="match_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="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/conversation_next"
/>
<Button
android:id="@+id/conversation_leave"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/conversation_leave"
/>
</LinearLayout>
</LinearLayout>