Câu hỏi được gắn thẻ «android-scrollview»

Một widget Android cho phép cuộn đứa con duy nhất của nó nếu nó quá lớn so với vùng hiển thị của màn hình.


23
RecyclerView bên trong ScrollView không hoạt động
Tôi đang cố gắng thực hiện một bố cục có chứa RecyclerView và ScrollView ở cùng một bố cục. Mẫu bố cục: <RelativeLayout> <ScrollView android:id="@+id/myScrollView"> <unrelated data>...</unrealated data> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/my_recycler_view" /> </ScrollView> </RelativeLayout> Vấn đề: tôi có thể cuộn cho đến khi phần tử cuối cùng của ScrollView …






15
Android - làm thế nào để tạo một ràng buộc có thể cuộn?
Tôi muốn tạo một bố cục cho phép tôi cuộn xuống bằng cách sử dụng bố cục ràng buộc, nhưng tôi không biết làm thế nào để đi về nó. Có nên ScrollViewlà cha mẹ của ConstraintLayoutnhư thế này? <?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 …


16
Tắt ScrollView có lập trình?
Tôi muốn bật ScrollView và vô hiệu hóa nó bằng một Nhấp chuột. Tắt có nghĩa là nếu ScrollView không có ở đó .. và bật nó sẽ trả về ScrollView. Tôi muốn điều đó vì tôi có một thư viện với các hình ảnh văn bản và trên một …

7
Làm thế nào để ngăn chế độ xem cuộn cuộn sang chế độ xem web sau khi dữ liệu được tải?
Vì vậy, tôi có một vấn đề hấp dẫn. Mặc dù thực tế là tôi không cuộn chế độ xem của mình theo cách thủ công hoặc theo chương trình, nhưng WebView của tôi đang được tự động cuộn đến sau khi dữ liệu bên trong nó tải. Tôi có …

10
Cuộn trang khi bàn phím mềm bật lên
Tôi có một <ScrollView>bố cục: <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/my_scrollview" android:layout_width="fill_parent" android:layout_height="wrap_content" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <EditText android:id="@+id/input_one" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <EditText android:id="@+id/input_two" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <EditText android:id="@+id/input_three" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <Button android:id="@+id/ok_btn" android:layout_width="200dp" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="20dp" android:text="@string/ok_str" /> </LinearLayout> </ScrollView> …



5
Dừng cuộn cha mẹ (NestedScrollview) Khi cuộn Con (RecyclerView)
Tôi cần hành vi tương tự như cách triển khai này Nhưng NestedScrollView sẽ là cha mẹ và RecyclerView sẽ là con của NestedScrollView. Ví dụ: https://medium.com/widgetlabs-engineering/scrollable-nestedscrollview-inside-recyclerview-ca65050d828a Tôi không chắc liệu nó có thể đạt được hay không. Đã vô hiệu hóa cha mẹ (NSV) trong khi con (RV) đang …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.