Skip to content

Instantly share code, notes, and snippets.

@ibrahim4851
Created April 17, 2021 11:16
Show Gist options
  • Save ibrahim4851/33ae4a23fc827ce107cb2096ca1edd3f to your computer and use it in GitHub Desktop.
Save ibrahim4851/33ae4a23fc827ce107cb2096ca1edd3f to your computer and use it in GitHub Desktop.
ItemViewPager
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="250dp" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="25dp" />
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="17dp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment