Skip to content

Instantly share code, notes, and snippets.

@dharmakshetri
Created December 13, 2016 06:40
Show Gist options
  • Save dharmakshetri/480b031324f9387da2e37e9adf8229dd to your computer and use it in GitHub Desktop.
Save dharmakshetri/480b031324f9387da2e37e9adf8229dd to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="80dp"
>
<TextView
android:id="@+id/tvName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:gravity="center_vertical"
android:textSize="25sp"
android:textColor="@android:color/black"
/>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@android:color/black"/>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment