Last active
December 21, 2015 16:59
-
-
Save stiucsib86/6337261 to your computer and use it in GitHub Desktop.
ChatHead XML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<TextView | |
android:id="@+id/txt_title" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:background="#d0bb0000" | |
android:padding="12dp" | |
android:text="Medium Text" | |
android:textColor="#d0ffffff" | |
android:textSize="16sp" | |
android:textStyle="bold"/> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="#d0ff0000" | |
android:orientation="vertical"> | |
<View | |
android:layout_width="match_parent" | |
android:layout_height="1dp" | |
android:background="#d0ffffff"/> | |
<TextView | |
android:id="@+id/txt_text" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:padding="12dp" | |
android:text="TextView" | |
android:textColor="#d0ffffff"/> | |
<Button | |
android:id="@+id/btn_dismiss" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_marginTop="6dp" | |
android:text="Dismiss" | |
android:textColor="#d0ffffff" | |
android:textStyle="bold"/> | |
</LinearLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment