Android SDK
This document assumes that you understand the basic terms of Android app development in Kotlin language
Part 1: To Add Floating Chat Icon:
<androidx.cardview.widget.CardView
android:id="@+id/fab"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:elevation="6dp"
app:cardCornerRadius="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<WebView
android:id="@+id/floatingWebView"
android:layout_width="80dp"
android:layout_height="80dp" />
<View
android:id="@+id/touchView"
android:layout_width="80dp"
android:layout_height="80dp"/>
</androidx.cardview.widget.CardView>Part 2: Adding Slider View
Last updated