Created
August 10, 2016 16:59
-
-
Save mplacona/db78befd8229e1ca0a8b08da6ff7cbe1 to your computer and use it in GitHub Desktop.
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
<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