Skip to content

Instantly share code, notes, and snippets.

@bnasim
Created March 15, 2016 19:28
Show Gist options
  • Save bnasim/0bb4241c835075ceb13b to your computer and use it in GitHub Desktop.
Save bnasim/0bb4241c835075ceb13b to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="match_parent"
android:background="@drawable/card_blueborder"
android:padding="8dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="survey_name"
android:id="@+id/tv_survey_name"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Description"
android:id="@+id/tv_description"
android:layout_below="@+id/tv_survey_name"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment