Skip to content

Instantly share code, notes, and snippets.

@nutchy
Created October 15, 2017 18:56
Show Gist options
  • Save nutchy/a73c4177ad791419939eb72fffe4b58f to your computer and use it in GitHub Desktop.
Save nutchy/a73c4177ad791419939eb72fffe4b58f to your computer and use it in GitHub Desktop.
[MyLazyInstagram] - rc_post_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFF"
android:paddingTop="0dp">
<ImageButton
android:id="@+id/gridBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FFF"
app:srcCompat="@mipmap/ic_grid"
android:scaleX="0.8"
android:scaleY="0.8"
android:layout_gravity="center"
/>
<ImageButton
android:id="@+id/listBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FFF"
app:srcCompat="@mipmap/ic_list"
android:scaleX="0.8"
android:scaleY="0.8"
android:layout_gravity="center"
/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:background="#FFF"
android:id="@+id/rc_post"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment