gpt4 book ai didi

android - 仅当在 Android 上打开虚拟键盘时才向上移动 TextView

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:35:52 25 4
gpt4 key购买 nike

我的xml代码在这里,

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainlayout" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:id="@+id/toplayout">
<ImageView
android:layout_width="wrap_content"
android:layout_height="100dp"
android:src="@drawable/bg" />
</LinearLayout>


<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:id="@+id/bottomlayout">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Enter value" />
</LinearLayout>

当我执行时,我得到了这个,

enter image description here

执行后,当我在编辑文本中输入值时,虚拟键盘打开并且整个主布局向上滚动,我得到了这个

enter image description here

但我除外,顶部布局不向上滚动,只有底部布局或 TextView 向上滚动。我希望这样, enter image description here

如何在打开虚拟键盘时只滚动编辑 View 。 ?

最佳答案

试试这个;也许它是有用的。调整manifest文件

<activity
android:windowSoftInputMode="adjustResize"
android:name=".youractivity" android:label="@string/app_name" >

@Ganesh 你改变 manifest 就像上面你的 Activity 代码一样有效

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/toplayout">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<EditText
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:hint="Enter value" />

</RelativeLayout>
</LinearLayout>

关于android - 仅当在 Android 上打开虚拟键盘时才向上移动 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11119967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com