Skip to content

Instantly share code, notes, and snippets.

@Xhendor
Created March 23, 2019 01:59
Show Gist options
  • Save Xhendor/5d66c631975983f3b9074551c1b782e3 to your computer and use it in GitHub Desktop.
Save Xhendor/5d66c631975983f3b9074551c1b782e3 to your computer and use it in GitHub Desktop.
Item task layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_margin="10dp">
<CheckBox
android:id="@+id/cbIsDone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginEnd="10dp" />
<TextView
android:id="@+id/tvTask"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="18sp"
tools:text="Test"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment