Android - कैसे एक स्क्रॉल करने योग्य बाधा बनाने के लिए?
मैं एक लेआउट बनाना चाहता हूं जो मुझे बाधा लेआउट का उपयोग करने की अनुमति देता है, लेकिन मुझे नहीं पता कि इसके बारे में कैसे जाना जाए। क्या इस तरह ScrollViewका जनक होना चाहिए ConstraintLayout? <?xml version="1.0" encoding="utf-8"?> <ScrollView 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:fillViewport="true"> <android.support.constraint.ConstraintLayout android:id="@+id/Constraint" android:layout_width="match_parent" android:layout_height="match_parent"/> …