- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章listview Button始终放在底部示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
android实现底部布局往往使用relativelayout的布局方式,并且设置android:layout_alignparentbottom=”true”,这样很容易实现底部布局。然而对于比较复杂的布局简单的属性设置无法达到这样的效果,例如top,center,bottom三层的布局,很可能因为中间层(center)的数据太多而将无法显示全或者将bottom层挤下去。解决这个问题,在采用relativelayout布局时,除了设置android:layout_alignparentbottom=”true”外,还需要对中间层进行属性进行设置:android:layout_above=”@id/bottom” android:layout_below=”@id/top”。这样的设置即确保center层能处于中间位置,也可以通过自适应显示滚动条。 以下的例子就是实现三层布局的底部布局的功能。如图1,2。 图-1 三层的底部布局界面 图 2 弹出输入法时显示的底部按钮 项目只是实现主要的数据填充及布局,故只是简单的文件加载。以下是源码: bottomtestactivity.java 。
复制代码 代码如下
package com.bottomtest.main; import java.util.arraylist; import java.util.hashmap; import android.app.activity; import android.os.bundle; import android.widget.listview; import android.widget.simpleadapter; publicclass bottomtestactivityextends activity { /** called when the activity is first created. */ @override publicvoid oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); listview list = (listview) findviewbyid(r.id.friends); //存储数据的数组列表 arraylist<hashmap<string, object>> listdata=new arraylist<hashmap<string,object>>(); string []name={"william","charles","linng","json","bob","carli"}; string []id={"12","16","33","21","34","22"}; for(int i=0;i<6;i++){ hashmap<string, object> map=new hashmap<string, object>(); map.put("friend_image", r.drawable.icon); map.put("friend_username", name[i]); map.put("friend_id", id[i]); listdata.add(map); } //适配器 simpleadapter listitemadapter=new simpleadapter(this, listdata, r.layout.item, new string[] {"friend_image","friend_username","friend_id" }, newint[] { r.id.friend_image, r.id.friend_username, r.id.friend_id }); list.setadapter(listitemadapter); } } 。
主要布局文件 main.xml 。
复制代码 代码如下
<?xmlversion="1.0"encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <relativelayoutandroid:id="@+id/bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" > <linearlayoutandroid:id="@+id/top" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <edittextandroid:id="@+id/view_user_input" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margintop="6dip" android:layout_marginleft="12dip" android:singleline="true" android:numeric="integer" android:imeoptions="actiondone" android:hint="输入用户id" android:layout_weight="1"/> <buttonandroid:id="@+id/view_user" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margintop="4dip" android:layout_weight="3" android:text="查看"/> </linearlayout> <linearlayoutandroid:id="@+id/center" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:layout_above="@id/bottom" android:layout_below="@id/top"> <textviewandroid:id="@+id/my_friends_list" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="好友列表" android:paddingtop="6dip" android:paddingleft="2dip" android:layout_marginleft="10dip"/> <listviewandroid:id="@+id/friends" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginbottom="6dip"/> </linearlayout> <linearlayoutandroid:id="@+id/bottom" android:background="@drawable/bg" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_alignparentbottom="true" > <buttonandroid:id="@+id/refresh" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margintop="2dip" android:text="刷新用户列表" android:layout_weight="1"/> <buttonandroid:id="@+id/back" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margintop="2dip" android:text="返回" android:layout_weight="1"/> </linearlayout> </relativelayout> </linearlayout> 。
listview item内容的布局文件 item.xml 。
复制代码 代码如下
<?xmlversion="1.0"encoding="utf-8"?> <relativelayoutxmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/relativelayout" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingbottom="4dip" android:paddingright="12dip"> <imageviewandroid:id="@+id/friend_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingtop="6dip" android:paddingleft="2dip" android:layout_centervertical="true" android:layout_alignparentleft="true"/> <textviewandroid:id="@+id/friend_username" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textsize="18dip" android:textcolor="#ccc" android:paddingtop="6dip" android:paddingright="2dip" android:layout_torightof="@id/friend_image" /> <textviewandroid:id="@+id/friend_id" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/friend_username" android:layout_marginright="36dip" android:paddingright="2dip" android:layout_torightof="@id/friend_image" android:textcolor="#fff" android:maxlines="2"/> </relativelayout> 。
最后此篇关于listview Button始终放在底部示例的文章就讲到这里了,如果你想了解更多关于listview Button始终放在底部示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
当我使用路径文件上的快捷方式在文件之间移动时,似乎我不仅仅是在文件之间移动。 我使用>转到一个文件,在该文件中我更改光标的位置并执行某些操作,然后按 gf noremap 关于vim 通过快捷方式直
我正在尝试使用 Pong P. Chu 的书来学习 Verilog。我有一个关于如何评估和实现始终 block 的问题。作者代码中的风格让我感到困惑。 在此示例中,他编写了一个具有两个输出寄存器“y1
我正在尝试制作一个聊天应用程序,因此我需要它始终接收服务器信息。因此,当请求完成时,在: http.onreadystatechange=function(){ 我再次调用该函数,因此: reques
当您在 always block 敏感度列表中使用通配符 @* 时,我对什么被视为输入有点困惑。例如,在下面的示例中,哪些信号被解释为导致 always block 被重新评估的输入? 据我了解,cl
我有一个充当调试器的程序。我为线程设置了一个 hw bp,将 dr0 设置为我希望 bp 所在的地址,将 dr7 设置为 1,因为我希望 bp 在每次执行该地址时生成一个事件。 它有效,但现在的问题是
如何每次都以管理员身份在 Windows 上运行 git bash。 操作系统 - Windows 10 家庭版 64 位 最佳答案 我在 Google 上找到了这个结果: 将 Git Bash 设置
使用 accept() 时或 getpeername() , sockaddr_storage总是有 ss_family=AF_INET6 : struct sockaddr_storage addr
我在 Cordova 方面还有另一个问题。我想在 Cordova 7.1.0 中使用插件“cordova.custom.plugins.exitapp”和“cordova-plugins-printe
我试图让模块通过 ISE 12.4 中的语法检查,但它给了我一个我不明白的错误。首先是代码片段: parameter ROWBITS = 4; reg [ROWBITS-1:0] temp; genv
我正在使用Cordova开发适用于iOS的应用程序,其中包括地理位置功能(我使用官方插件https://github.com/apache/cordova-plugin-geolocation)。我在
我想知道是否有可能只在敏感列表中的多个信号一起变化时才执行 always block 。 例如,假设我有一个信号“in”和另一个“posedge clk”。我希望在两个信号都发生变化时执行 alway
我需要实现一种算法来访问数据库来检查最后一个元素,以便计算新的元素。当然,第一次这是不可能的,因为数据库是空的,我得到 IndexOutOfBoundsException) index 0 reque
我正在利用我在网上找到的画廊系统,根据鼠标图像的接近程度,它会按比例增长。 链接:Gallery 好吧,我调整了代码以响应(如您所见正在 build 中)并且没有明显的问题。我的问题在更改分辨率时开始
我正在创建一个 kiosk 应用程序,我想确保它无论如何始终位于其他 Windows 应用程序和 Windows 任务栏之上。 我已经阻止了 Windows 键盘命令(alt-tab 等),但仍有可能
我即将开始一个新的 React 项目,并尝试利用我以前的知识来创建一些关于我如何构建应用程序的规则。 有些事情我认为是真的: Redux 保存整个应用程序的“主要”数据 如果需要跨应用程序共享,Red
当你打开 VS Code 时,终端默认是在底部打开的。您可以单击该图标将其向右移动。我想知道是否有办法将右侧打开设置为默认值。 谢谢。 最佳答案 是的 - 在 v1.20 中引入了设置 workb
我有一个Events表,其中包含各种类型的事件。我只关心其中一种类型。因此,我编写的每个查询都以开头 Events.objects.filter(event_type="the_type").\
我在单例中创建了一个Timer,并且我一直在努力解决为什么Timer没有触发。我查看了这里的帖子,但没有找到我认为可以直接回答我的问题的帖子。 class ConnectionStateMonitor
我在 TableViewController 中显示了一组项目。它们在 TVC 中正确显示。下面的代码会继续,但它只会继续到我的 MKMapItem 数组的 indexPath 0,而不是被单击的单元
我的 VC 是这样的: var coins = 50 // coins override func viewDidLoad() { super.viewDidLoad() if(SKP
我是一名优秀的程序员,十分优秀!