Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Created May 13, 2016 21:08
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save udacityandroid/e9399aa9b3ffb7690d15b4b7fbe148db to your computer and use it in GitHub Desktop.
Save udacityandroid/e9399aa9b3ffb7690d15b4b7fbe148db to your computer and use it in GitHub Desktop.
Miwok App: Miwok app: List Item Views with pressed states
<?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>
@AJM95
Copy link

AJM95 commented Aug 16, 2020

2020 I was here. pheeeww. This was a very long lesson guys. Phewww

@Abdelhaq-Bannar
Copy link

2021 ^^ i think i'm the last one hhh

@sarwarsateer
Copy link

anyone still here in 2021? lol
-Sarwar Sateer

Copy link

ghost commented Jun 25, 2021

Hey yo
Congrats on reaching this far everyone!!

@david-read-iii
Copy link

For those having issues with option 1, setting android:clickable="true" and android:focusable="true" helps in some cases.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment