ScrollView doesn't work

匿名 (未验证) 提交于 2019-12-03 01:22:02

问题:

It should be easy I know!!! I watched tutorial, searched for approx. 2 hours and tried like 15 different methods (maybe more) and still can't get it to work.

In my app when I focus/select EditText and keyboard pops out I can't scroll down to input other text

AndroidManifest.xml > activity set to android:windowSoftInputMode="adjustPan"

here is the layout>main.xml

回答1:

Couple of things:

  1. Make sure the ScrollView only has one child,

  2. As already mentioned, make sure you have a closing tag

  3. The following code worked for me...

<?xml version="1.0" encoding="utf-8"?>  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"   android:fillViewport="true" >    <LinearLayout           android:orientation="vertical"           android:layout_width="fill_parent"           android:layout_height="fill_parent" >            <!--I added more views here! -->    </LinearLayout> </ScrollView>

Hope this helps.

------------------------------------------------------------------------------------------

Update from comments... Screenshot of when I copy and pasted your code (on a Samsung Galaxy S). Working!




回答2:

You haven't witten </ScrollView> at last, Just Add and Ya it is done.



回答3:

In my case, I had an OnTouchListener on the ScrollView that returned true in the onTouch method. This broke scrolling. Changing it to return false fixed the problem.



转载请标明出处:ScrollView doesn't work
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!