habitica-android/Habitica/res/layout/overlay_tutorial.xml

29 lines
1.1 KiB
XML
Raw Normal View History

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"
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"/>
<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"
android:layout_marginBottom="?actionBarSize">
2017-04-12 12:57:09 +00:00
<com.habitrpg.android.habitica.ui.SpeechBubbleView
android:id="@+id/speech_bubble_view"
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"/>
</FrameLayout>
2016-01-27 15:55:23 +00:00
</RelativeLayout>