安卓界面虚拟键盘弹出下面布局怎么顶上去

 我来答
百度网友8b790cb
2015-08-05 · TA获得超过192个赞
知道小有建树答主
回答量:223
采纳率:100%
帮助的人:92.6万
展开全部
有时候我们需要这种效果,键盘弹出,底部的内容跟随上移。今天我就实现了这样一个小小的效果
我们直接来看布局文件main.xml
[java] view plaincopy
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="bottom">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="1.0">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:orientation="vertical"
android:scrollbars="vertical">
<EditText
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

</ScrollView>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center_horizontal"
android:paddingLeft="20dp"
android:paddingRight="20dp">
<Button android:id="@+id/smit_btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="上 传"
android:layout_weight="1.0"/>

<Button android:id="@+id/cancel_btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:text="取 消" />"

</LinearLayout>
</LinearLayout>

当ScrollView里的元素想填满ScrollView时,使用"fill_parent"是不管用的,必需为ScrollView设置:android:fillViewport="true"。

这样做 底部的上传和取消会随着软键盘的弹出而上移。
f467655008
2015-02-03 · TA获得超过1026个赞
知道小有建树答主
回答量:277
采纳率:69%
帮助的人:134万
展开全部
将Activity的属性设置成 android:windowSoftInputMode="stateUnchanged|adjustPan" 如果你是想改变你的布局,可以监听键盘的弹出,然后重新布局
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
抢个名字真痛苦
2015-02-03 · 超过17用户采纳过TA的回答
知道答主
回答量:177
采纳率:0%
帮助的人:49.9万
展开全部
有图么
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式