- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个如下所示的 LinearLayout
<LinearLayout
android:id="@+id/middleLinearLayout"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00000000"
android:cacheColorHint="#00000000"
android:gravity="center"
android:listSelector="@drawable/categories_list_item_selector" >
</ListView>
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="300dp"
android:layout_height="22dp"
android:adjustViewBounds="true"
android:background="@android:color/transparent"
android:scaleType="fitCenter"
android:src="@drawable/button_plus" />
</LinearLayout>
我希望按钮固定在底部的 ListView 上,所以如果 ListView 有 0 个项目,那么按钮会向上移动...如果 ListView 有很多项目,那么我希望 Button 随着 ListView 增长,直到触及 Linear 的底部,然后 ListView 将停止获得更高的高度。
感谢您的帮助...
-----编辑------------
我的完整布局 xml 如下所示
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal"
tools:context=".ShowFoodOrSupplement" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:scaleType="fitXY"
android:src="@drawable/main_bg" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:adjustViewBounds="true"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/backButton"
android:layout_width="15dp"
android:layout_height="16dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:background="@android:color/transparent"
android:onClick="backBtnClick"
android:scaleType="fitXY"
android:src="@drawable/back_arrow" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="245dp"
android:layout_height="45dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="0dp"
android:src="@drawable/general_top_image" />
<TextView
android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="8dp"
android:text="το πρόγραμμά μου"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="12sp" />
</RelativeLayout>
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:src="@drawable/myprogram_breakfast_image" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/lines_bg_program_food" />
<ImageButton
android:id="@+id/imageButton4"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_marginLeft="40dp"
android:background="@android:color/transparent"
android:scaleType="fitXY"
android:src="@drawable/watch_program" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@id/imageButton4"
android:text="--:--" />
<ImageButton
android:id="@+id/imageButton5"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerHorizontal="true"
android:background="@android:color/transparent"
android:scaleType="fitXY"
android:src="@drawable/alarm_icon" />
<ImageButton
android:id="@+id/imageButton6"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:layout_marginRight="40dp"
android:background="@android:color/transparent"
android:scaleType="fitXY"
android:src="@drawable/copy_program" />
</RelativeLayout>
<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_marginTop="3dp"
android:text="Kcal"
android:layout_gravity="right"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#000000" />
<RelativeLayout
android:id="@+id/middleLinearLayout"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00000000"
android:cacheColorHint="#00000000"
android:gravity="center"
android:listSelector="@drawable/categories_list_item_selector" >
</ListView>
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="300dp"
android:layout_height="22dp"
android:adjustViewBounds="true"
android:layout_below="@id/listView1"
android:background="@android:color/transparent"
android:scaleType="fitCenter"
android:onClick="PickSomeFood"
android:src="@drawable/button_plus" />
</RelativeLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:background="@android:color/darker_gray" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="20dp"
android:text="σύνολο θερμίδων:" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:text="0 Kcal" />
</RelativeLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:background="@android:color/darker_gray" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:layout_width="130dp"
android:layout_height="35dp"
android:background="@android:color/transparent"
android:scaleType="fitXY"
android:src="@drawable/profile_form_save_button" />
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:text="αποθήκευση"
android:textColor="#ffffff"
android:textSize="14sp" />
</FrameLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/ImageButton02"
android:layout_width="130dp"
android:layout_height="35dp"
android:layout_gravity="center"
android:background="@android:color/transparent"
android:scaleType="fitXY"
android:src="@drawable/profile_form_save_button" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:text="διαγραφή"
android:textColor="#ffffff"
android:textSize="14sp" />
</FrameLayout>
</LinearLayout>
<ImageView
android:id="@+id/imageViewBottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_marginBottom="5dp"
android:src="@drawable/bottom_schedule" />
</LinearLayout>
所以我希望第一个线性获得屏幕的全高,然后在 middleLinearLayout 上方的所有小部件中位于顶部,而 middleLinearLayout 下方的其余部分位于底部......我通过添加 android:layout_weight="1"成功了,所以现在 middleLinearLayout 正在获得其余的高度......
现在在 middleLinearLayout 中我有一个 ListView 和一个 Button...我想举个例子,如果 ListView 项目是 2,那么按钮将粘在 ListView 的底部,并且在 middleLinearLayout 结束之前会有一个空格...
问题是,如果 ListView 项超过 middleLinearLayout 的高度,那么 ListView 下面的 UIImageButton 就会消失...
最佳答案
我认为您想要的是一个容器(LinearLayout
或 RelativeLayout
),正如您已经发现的那样,它适合使用 的其他两个 View android:weight="1"
.
在此容器中,您需要一个 ListView
和一个 Button
。该按钮应位于列表项的正下方。
@Malachiasz 的回答是正确的,这意味着您的按钮将始终低于您的 ListView
但现在您遇到了另一个问题 - 这是因为 ListView 的大小
Button
不再可见,因为它不适合您的容器。
不幸的是,当 ListView
的父级在其祖先中具有离散大小时,您无法实现该行为。您的 ListView
可以是离散大小 (100dp)、相对于自身的大小 (wrap_contents
) 或相对于其父级的大小(90%、填充等)。
如果你给它一个离散的大小或相对于它的父级的大小,Button 将保持锚定在列表的底部(或容器的底部)并且永远不会根据列表项向上或向下移动正在添加。然而,从视觉上看,这看起来不错,很容易让它看起来正确。
如果您给 ListView
一个相对于自身的大小 (wrap_content
),那么您的 Button
将根据列表正确向上或向下移动contents,但是,如果 ListView 的祖先具有除 wrap_contents
以外的任何高度,您最终将进入 ListView
变大的位置比它的容器和按钮将消失(您也将无法滚动到列表中的最后一项)。
为了使您的 UI 看起来合理且功能正确,由您决定采用哪种方法以及需要考虑哪些因素。
关于android - 使用 ListView 和 Button 限制高度 LinearLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19861014/
我有一个 ServiceBusQueue(SBQ),它获取大量消息负载。我有一个具有 accessRights(manage) 的 ServiceBusTrigger(SBT),它不断轮询来自 SBQ
在下面给出的结果集中,有 2 个唯一用户 (id),并且查询中可能会出现更多此类用户: 这是多连接查询: select id, name, col1Code, col2Code, col2Va
我正在用 Python 2.7.3 编写一个带有 GRequests 的小脚本和 lxml 可以让我从各种网站收集一些收藏卡价格并进行比较。问题是其中一个网站限制了请求的数量,如果我超过它,就会发回
我想知道何时实际使用删除级联或删除限制以及更新级联或更新限制。我对使用它们或在我的数据库中应用感到很困惑。 最佳答案 在外键约束上使用级联运算符是一个热门话题。 理论上,如果您知道删除父对象也将自动删
下面是我的输出,我只想显示那些重复的名字。每个名字都是飞行员,数字是飞行员驾驶的飞机类型。我想显示驾驶不止一架飞机的飞行员的姓名。我正在使用 sql*plus PIL_PILOTNAME
我正在评估不同的移动框架,我认为 nativescript 是一个不错的选择。但我不知道开发过程是否存在限制。例如,我对样式有限制(这并不重要),但我想知道将来我是否可以有限制并且不能使用某些 nat
我正在尝试使用 grails 数据绑定(bind)将一些表单参数映射到我的模型中,但我认为在映射嵌入式集合方面可能存在一些限制。 例如,如果我提交一些这样的参数,那么映射工作正常: //this wo
是否可以将 django 自过滤器起的时间限制为 7 天。如果日期超过 7 天,则不应用过滤器 最佳答案 timesince 的源代码位于 django/django/utils/timesince.
我想在我的网站上嵌入一个 PayPal 捐赠按钮。但问题是我住在伊朗——这个国家受到制裁,人们不使用国际银行账户或主要信用卡。 有什么想法吗?请帮忙! 问候 沮丧 最佳答案 您可以在伊朗境内使用为伊朗
这是我的查询 select PhoneNumber as _data,PhoneType as _type from contact_phonenumbers where ContactID = 3
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个答案) 关闭
我的一个项目的 AndroidManifest.xml 变得越来越大(> 1000 行),因为我必须对某些文件类型使用react并且涵盖所有情况变得越来越复杂。我想知道 list 大小是否有任何限制。
在使用 Sybase、Infomix、DB2 等其他数据库产品多年后使用 MySQL 5.1 Enterprise 时;我遇到了 MySQL 不会做的事情。例如,它只能为 SELECT 查询生成 EX
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个回答) 关闭5年
通常我们是在{$apache}/conf/httpd.conf中设置Apache的参数,然而我们并没有发现可以设置日志文件大小的配置指令,通过参考http://httpd.apache.org/do
我正在搜索最大的 Android SharedPreferences 键值对,但找不到任何好的答案。其次,我想问一下,如果我有一个键,它的字符串值限制是多少。多少字符可以放入其中。如果我需要频繁更改值
我目前正在试验 SoundCloud API,并注意到我对/tracks 资源的 GET 请求一次从不返回超过 200 个结果。关于这个的几个问题: 这个限制是故意的吗? 有没有办法增加这个限制? 如
我正在与一家名为 Dwolla 的金融技术公司合作,该公司提供了一个 API,用于将银行信息附加到用户并收取/发送 ACH 付款。 他们需要我将我的 TLS 最低版本升级到 1.2(禁用 TLS 1.
我在 PHP 中有一个多维数组,如下所示: $array = Array ( [0] => Array ( [bill] => 1 ) [1] => Array ( [
我在获取下一个查询的第一行时遇到了问题: Select mar.Title MarketTitle, ololo.NUMBER, ololo.Title from Markets mar JOIN(
我是一名优秀的程序员,十分优秀!