Android Developers
Create a List with RecyclerView Create swipe views with tabs using ViewPager2 https://developer.android.com/guide/navigation/navigation-swipe-view-2 Slide between fragments using ViewPager2 https://developer.android.com/training/animation/screen-slide-2 Adding Swipe-to-Refresh To Your App (SwipeRefreshLayout) https://developer.android.com/training/swipe/add-swipe-interface Build and display a pop-up message (Snackbar) https://developer.android.com/training/snackbar/showing Bluetooth overview https://developer.android.com/guide/topics/connectivity/bluetooth Add the app bar https://developer.android.com/training/appbar Menus https://developer.android.com/guide/topics/ui/menus Create a List with RecyclerView https://developer.android.com/guide/topics/ui/layout/recyclerview implementation ‘androidx.recyclerview:recyclerview:1.1.0’ activity_main.xml <LinearLayout 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” android:orientation=”vertical” tools:context=”.MainActivity3″> <androidx.recyclerview.widget.RecyclerView android:id=”@+id/my_recycler_view” android:scrollbars=”vertical” android:layout_width=”match_parent” android:layout_height=”match_parent”/> </LinearLayout>…
Read More