Answers for "what is recyclerview in android"

9

recyclerview dependency java android

dependencies {
    implementation "androidx.cardview:cardview:1.0.0"
}
Posted by: Guest on May-19-2020
0

recyclerview dependency java android

dependencies {
    implementation "androidx.recyclerview:recyclerview:1.2.1"
    // For control over item selection of both touch and mouse driven selection
    implementation "androidx.recyclerview:recyclerview-selection:1.1.0"
}
Posted by: Guest on October-15-2021
0

add textview to recyclerview

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ScrollView
        android:id="@+id/childScroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </ScrollView>

    <TextView
        android:id="@+id/solutions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>
Posted by: Guest on November-07-2020

Code answers related to "what is recyclerview in android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language