«android-scrollview» 태그된 질문

화면의 가시 영역에 비해 너무 큰 경우 유일한 자식의 스크롤을 허용하는 Android 위젯입니다.

27
ListView가 접히지 않고 어떻게 ScrollView에 넣을 수 있습니까?
이 문제에 대한 해결책을 찾아 보았는데 찾을 수있는 유일한 대답은 " ListView를 ScrollView에 넣지 마십시오 "입니다. 나는 왜 그런지에 대한 실제 설명을 아직 보지 못했습니다 . 내가 찾을 수있는 유일한 이유는 Google이 그렇게하고 싶지 않다고 생각하기 때문입니다. 글쎄, 그렇게 했어. 문제는 ListView를 최소 높이로 축소하지 않고 어떻게 ListView를 ScrollView에 배치 …

23
ScrollView 내부의 RecyclerView가 작동하지 않습니다
동일한 레이아웃에서 RecyclerView와 ScrollView가 포함 된 레이아웃을 구현하려고합니다. 레이아웃 템플릿 : <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> 문제 : 마지막 요소까지 스크롤 할 수 있습니다. ScrollView 내가 시도한 것 : ScrollView(현재 ScrollView포함 RecyclerView) 내부의 카드보기 -RecyclerView 초기 생각은 보기 유형 중 하나 가 …

30
스크롤보기 내부의 Android 목록보기
scrollView많은 요소 가있는 안드로이드 레이아웃이 있습니다 . scrollViewI 의 하단 listView에는 어댑터가 채워져 있습니다. 내가 겪고있는 문제는 안드로이드가 이미 스크롤 가능한 기능을 가지고 있기 때문에 listView에서를 제외한다는 것 입니다. 내가 원하는 한 내용이며, 마스터에 대한 스크롤 할 수보기를 스크롤 할 수 있습니다.scrollViewscrollViewlistView 이 동작을 어떻게 달성 할 수 있습니까? 내 …

8
ScrollView Touch 처리 내의 HorizontalScrollView
전체 화면을 스크롤 할 수 있도록 전체 레이아웃을 둘러싼 ScrollView가 있습니다. 이 ScrollView에있는 첫 번째 요소는 가로로 스크롤 할 수있는 기능이있는 HorizontalScrollView 블록입니다. 터치 이벤트를 처리하고보기가 ACTION_UP 이벤트에서 가장 가까운 이미지에 "스냅"되도록 ontouchlistener를 horizontalscrollview에 추가했습니다. 그래서 내가 가고있는 효과는 주식 안드로이드 홈 화면과 같습니다. 여기서 한 화면에서 다른 화면으로 스크롤 …


13
ScrollView 내부의 Recyclerview가 부드럽게 스크롤되지 않습니다
내 애플 리케이션을 위해 내가 사용하고 RecyclerView내부 a를 ScrollView(가) RecyclerView사용하여 내용에 따라 높이가 이 라이브러리를 . 스크롤이 작동하지만을 스크롤하면 부드럽게 작동하지 않습니다 RecyclerView. 나는 오버 스크롤하면 ScrollView원활 스크롤됩니다 자체. 내가 정의하는 데 사용하는 코드 RecyclerView: LinearLayoutManager friendsLayoutManager = new LinearLayoutManager(getActivity().getApplicationContext(), android.support.v7.widget.LinearLayoutManager.VERTICAL, false); mFriendsListView.setLayoutManager(friendsLayoutManager); mFriendsListView.addItemDecoration(new DividerItemDecoration(getActivity().getApplicationContext(), null)); RecyclerView에서 ScrollView: <android.support.v7.widget.RecyclerView android:layout_marginTop="10dp" …


15
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"/> 아니면 다른 방법? 어쩌면 누군가 나에게 이것에 대한 좋은 튜토리얼을 지적하거나 예제를 제시 할 수 있습니다. …


16
프로그래밍 방식으로 ScrollView를 비활성화 하시겠습니까?
ScrollView를 활성화하고 버튼 클릭으로 비활성화하고 싶습니다. Disable은 ScrollView가없는 경우와 같습니다. 활성화하면 ScrollView가 반환됩니다. 텍스트 이미지가있는 갤러리가 있고 버튼을 클릭하면 화면 방향이 변경되므로 가로 모드에서 텍스트가 더 커집니다. 그리고 이미지가 자체적으로 늘어나지 않고 텍스트를 읽을 수 없도록 ScrollView를 원합니다. scrollview.Enabled=false / setVisibility(false) 아무것도 만들지 않습니다. xml : <ScrollView android:id="@+id/QuranGalleryScrollView" android:layout_height="fill_parent" android:layout_width="fill_parent"> …

7
데이터가로드 된 후 scrollview가 webview로 스크롤되는 것을 방지하는 방법은 무엇입니까?
그래서 저는 흥미로운 문제가 있습니다. 수동으로 또는 프로그래밍 방식으로 뷰를 스크롤하지 않는다는 사실에도 불구하고 내 WebView는 내부 데이터가로드 된 후 자동으로 스크롤됩니다. 뷰 페이저에 조각이 있습니다. 호출기를 처음로드하면 예상대로 작동하고 모든 것이 표시됩니다. 그러나 일단 "페이지를 넘기면"데이터가로드되고 WebView가 페이지 상단에 팝업되어 그 위에보기가 숨겨지는 것은 바람직하지 않습니다. 누구든지 이것을 방지하는 …

10
소프트 키보드 팝업시 페이지 스크롤
나는이 <ScrollView>레이아웃 : <?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> 위에서 볼 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.