Skip to content

Instantly share code, notes, and snippets.

@maydin
Created November 12, 2018 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maydin/ffc4c7c62dc742c5ce4bd44f5365ac6c to your computer and use it in GitHub Desktop.
Save maydin/ffc4c7c62dc742c5ce4bd44f5365ac6c to your computer and use it in GitHub Desktop.
Drawing Borders Option 1 Item Container
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/border"
android:orientation="horizontal">
<TextView
android:id="@+id/item_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem"/>
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment