'I need to add Content Description to Child Views in Recycler View Items

For a Recycler Item view ,In child view I need to add content Description to get the accessibility id while processing with Appium tool . I can get the parent content description but not the Child view ID. I have tried with the "importantForAccessibility" as no for parent layout and add yes for child layout still no luck on it

<androidx.constraintlayout.widget.ConstraintLayout  xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/practiceLayoutView"
android:importantForAccessibility="no">
<TextView
android:id="@+id/practiceTitle"
 android:layout_width="0dp"
 android:contentDescription="@string/practice_no_data_header"
 android:layout_height="wrap_content"
 android:ellipsize="end"
 android:text="Food"
 android:textColor="@color/black_ls"
 android:textSize="@dimen/_16sp"/>
 </androidx.constraintlayout.widget.ConstraintLayout>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source