mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-04 17:30:56 +01:00
40 lines
1.3 KiB
XML
40 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="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<!--<View-->
|
||
|
<!--android:layout_width="wrap_content"-->
|
||
|
<!--android:layout_height="5dp"-->
|
||
|
<!--android:background="@drawable/shadow_upward" />-->
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/toolTip_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="bottom"
|
||
|
android:background="#e74c3c"
|
||
|
android:orientation="vertical"
|
||
|
android:gravity="center"
|
||
|
android:padding="10dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="Default Title"
|
||
|
android:textColor="@color/White"
|
||
|
android:textSize="20sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/description"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="Default Description"
|
||
|
android:textColor="@color/White" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|