mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
Force black background on conversation scroll list. Corrected tile in Prim main hall. git-svn-id: https://andors-trail.googlecode.com/svn/trunk@121 08aca716-68be-ccc6-4d58-36f5abd142ac
48 lines
1.3 KiB
XML
48 lines
1.3 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"
|
|
android:background="@android:color/transparent"
|
|
>
|
|
|
|
<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"
|
|
style="@style/Style.BlackListView"
|
|
/>
|
|
|
|
<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>
|