2016-01-27 15:55:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-12 12:57:09 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-12-21 13:17:06 +00:00
|
|
|
android:focusable="true"
|
2017-04-12 12:57:09 +00:00
|
|
|
android:clickable="true"
|
2019-06-03 15:12:29 +00:00
|
|
|
android:id="@+id/background">
|
2016-01-27 15:55:23 +00:00
|
|
|
<View android:layout_height="match_parent"
|
2017-04-12 12:57:09 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:background="@android:color/black"
|
|
|
|
|
android:alpha="0.6"/>
|
2017-04-07 18:00:49 +00:00
|
|
|
<FrameLayout
|
2017-04-12 12:57:09 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
|
android:paddingEnd="16dp"
|
2017-04-12 12:57:09 +00:00
|
|
|
android:paddingBottom="24dp"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
2019-06-03 15:12:29 +00:00
|
|
|
android:layout_marginBottom="?actionBarSize">
|
2017-04-12 12:57:09 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.SpeechBubbleView
|
2020-09-08 17:23:01 +00:00
|
|
|
android:id="@+id/speech_bubble_view"
|
2017-04-07 18:00:49 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-04-12 12:57:09 +00:00
|
|
|
app:namePlate="Justin"
|
|
|
|
|
app:npcDrawable="@drawable/justin_textbox"/>
|
2017-04-07 18:00:49 +00:00
|
|
|
</FrameLayout>
|
2016-01-27 15:55:23 +00:00
|
|
|
</RelativeLayout>
|