Skip to content

Instantly share code, notes, and snippets.

@abdulazizahwan
Created March 2, 2020 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdulazizahwan/2f94cb4a21a114df2e6a7a8fea65c7e5 to your computer and use it in GitHub Desktop.
Save abdulazizahwan/2f94cb4a21a114df2e6a7a8fea65c7e5 to your computer and use it in GitHub Desktop.
activity_main.xml for tutorial https://youtu.be/JTTs4Xbthmc
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/img1"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toTopOf="@id/menu_bottom"/>
<androidx.viewpager.widget.ViewPager
android:id="@+id/viewpager"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/menu_bottom"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.ismaeldivita.chipnavigation.ChipNavigationBar
android:id="@+id/menu_bottom"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="#fff"
android:padding="8dp"
android:elevation="16dp"
android:gravity="center"
app:cnb_menuResource="@menu/bottom_menu"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment