Skip to content

Instantly share code, notes, and snippets.

@mplacona
Created August 10, 2016 16:59
Show Gist options
  • Save mplacona/db78befd8229e1ca0a8b08da6ff7cbe1 to your computer and use it in GitHub Desktop.
Save mplacona/db78befd8229e1ca0a8b08da6ff7cbe1 to your computer and use it in GitHub Desktop.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:id="@+id/holder_container"
android:layout_centerVertical="true"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:orientation="vertical"
>
<TextView
android:id="@+id/tv_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:textSize="15sp"
style="@style/Base.TextAppearance.AppCompat.Headline"/>
<TextView
android:id="@+id/tv_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="10sp"
style="@style/Base.TextAppearance.AppCompat.Subhead"/>
</LinearLayout>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment