Skip to content

Instantly share code, notes, and snippets.

@ramadanasr
Forked from udacityandroid/ list_item.xml
Created June 7, 2018 04:30
Show Gist options
  • Save ramadanasr/0f21041ee6a19b6b30b51e940c608356 to your computer and use it in GitHub Desktop.
Save ramadanasr/0f21041ee6a19b6b30b51e940c608356 to your computer and use it in GitHub Desktop.

Revisions

  1. @udacityandroid udacityandroid created this gist May 13, 2016.
    62 changes: 62 additions & 0 deletions list_item.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,62 @@

    <?xml version="1.0" encoding="utf-8"?>
    <!-- Layout for a single list item -->
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="@dimen/list_item_height"
    android:background="@color/tan_background"
    android:orientation="horizontal">

    <ImageView
    android:id="@+id/image"
    android:layout_width="@dimen/list_item_height"
    android:layout_height="@dimen/list_item_height" />

    <LinearLayout
    android:id="@+id/text_container"
    android:layout_width="match_parent"
    android:layout_height="@dimen/list_item_height"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@id/image"
    android:orientation="vertical"
    android:paddingLeft="16dp">

    <TextView
    android:id="@+id/miwok_text_view"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:gravity="bottom"
    android:textAppearance="?android:textAppearanceMedium"
    android:textColor="@android:color/white"
    android:textStyle="bold"
    tools:text="lutti" />

    <TextView
    android:id="@+id/default_text_view"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:gravity="top"
    android:textAppearance="?android:textAppearanceMedium"
    android:textColor="@android:color/white"
    tools:text="one" />
    </LinearLayout>

    <ImageView
    android:layout_width="24dp"
    android:layout_height="24dp"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="16dp"
    android:src="@drawable/ic_play_arrow" />

    <View
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="?android:attr/selectableItemBackground"/>

    </RelativeLayout>