Skip to content

Instantly share code, notes, and snippets.

View balvinderg's full-sized avatar

Balvinder Singh Gambhir balvinderg

View GitHub Profile
@balvinderg
balvinderg / activity_main.xml
Created November 21, 2022 15:29
Main Activity Layout
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/my_viewpager"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
@balvinderg
balvinderg / menu.xml
Created November 21, 2022 15:07
Menu file for Bottom Bar
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/tab1"
android:title="Tab1"
android:icon="@drawable/tab1_icon"/>
<<item
android:id="@+id/tab2"
android:title="Tab2"
android:icon="@drawable/tab2_icon"/>