mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-19 10:04:52 +01:00
Prevent FC when changing maps while animations are running (such as regeneration) git-svn-id: https://andors-trail.googlecode.com/svn/trunk@188 08aca716-68be-ccc6-4d58-36f5abd142ac
29 lines
878 B
XML
29 lines
878 B
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_vertical"
|
|
android:paddingBottom="@dimen/conversation_statementpadding"
|
|
>
|
|
<ImageView
|
|
android:id="@+id/conversation_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/char_hero"
|
|
android:paddingRight="@dimen/dialog_iconpadding_right"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/conversation_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Actor: Text"
|
|
android:textSize="@dimen/conversation_textsize"
|
|
android:shadowDx="1"
|
|
android:shadowDy="1"
|
|
android:shadowRadius="1"
|
|
android:shadowColor="#000"
|
|
/>
|
|
</LinearLayout>
|