导航:首页 > 操作系统 > fillviewportandroid

fillviewportandroid

发布时间:2023-01-03 06:27:11

A. 移动开发 android:fillViewport="true" , android:scrollbars="none" 是干什么的呀求详解

android:fillViewport="true"

当一个高度值不足scrollview的子控件fillparent的时候,单独的定义android:layout_height="fill_parent"是不起作用的,必须加上fillviewport属性,当子控件的高度值大于scrollview的高度时,这个标签就没有任何意义了。

android:scrollbars="none"

隐藏滚动条

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

有时候我们需要这种效果,键盘弹出,底部的内容跟随上移。今天我就实现了这样一个小小的效果
我们直接来看布局文件main.xml
[java] view plain
<?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"。

这样做 底部的上传和取消会随着软键盘的弹出而上移。

阅读全文

与fillviewportandroid相关的资料

热点内容
python数据精度 浏览:632
管什么小女孩App 浏览:192
phppdf转换成图片 浏览:468
十八讲pdf 浏览:619
mysql导入压缩文件 浏览:21
usb控制单片机 浏览:906
你为什么喜欢安卓手机 浏览:863
阿里云服务器购买和使用 浏览:389
单片机sp1 浏览:282
大学生玩猫咪解压 浏览:794
php附近的算法 浏览:346
黑马程序员培训机构怎么样 浏览:36
怎么查找服务器ip地址 浏览:371
华为手机为什么开不了定位服务器地址 浏览:970
美容美发app哪里有 浏览:8
php超时处理 浏览:319
vba编译错误缺少数组 浏览:999
mac程序员开发常用软件 浏览:270
linuxsquid配置文件 浏览:355
程序员五年进步 浏览:251