我应该很容易知道!!!我看了教程,搜索了大约。 2个小时,并尝试了15种不同的方法(可能更多),仍然无法让它工作。
在我的应用中,当我对焦/选择EditText并弹出键盘时,我无法向下滚动以输入其他文字
AndroidManifest.xml > 活动设置为 android:windowSoftInputMode =“adjustPan”
这是布局> main.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg"
android:orientation="vertical"
android:padding="20dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" >
<TextView
android:id="@+id/txtProduct1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Produkt 1"
android:textColor="#FFFFFF"
android:textSize="28dp"
android:textStyle="bold" />
<TextView
android:id="@+id/txtInfo1"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginLeft="5dp"
android:gravity="right"
android:text="cena / hmot: 0 eur"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#EEEEEE"
android:width="140dp" />
</LinearLayout>
<EditText
android:id="@+id/txtPrice1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="10dp"
android:ems="10"
android:hint="Cena"
android:inputType="numberDecimal" >
</EditText>
<EditText
android:id="@+id/txtWeight1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:ems="10"
android:hint="Hmotnosť"
android:inputType="numberDecimal" />
<ImageView
android:id="@+id/imgResult"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/question" />
<EditText
android:id="@+id/txtPrice2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="20dp"
android:ems="10"
android:hint="Cena"
android:inputType="numberDecimal" />
<EditText
android:id="@+id/txtWeight2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:ems="10"
android:hint="Hmotnosť"
android:inputType="numberDecimal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/txtInfo2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="5dp"
android:text="cena / hmot: 0 eur"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#EEEEEE"
android:width="140dp" />
<TextView
android:id="@+id/txtProduct2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Produkt 2"
android:textColor="#FFFFFF"
android:textSize="28dp"
android:textStyle="bold" />
</LinearLayout>
<Button
android:id="@+id/btnOK"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="15dp"
android:height="80dp"
android:text="OK"
android:textColor="#264865"
android:textSize="24dp"
android:textStyle="bold"
android:width="160dp" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:3)
一些事情:
确保ScrollView只有一个孩子,
如前所述,请确保您有结束标记
以下代码对我有用......
<?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>
希望这有帮助。
从评论更新...我复制并粘贴您的代码(在三星Galaxy S上)的屏幕截图。工作!
答案 1 :(得分:1)
你最后没有看到</ScrollView>
,只是添加,而雅已完成。
答案 2 :(得分:1)
就我而言,我在ScrollView上有一个OnTouchListener,它在onTouch方法中返回true。这打破了滚动。更改它以返回false修复了问题。