- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想这应该是一个相当容易回答的问题,如果您比我更了解 XML 布局的话。在使用 match_parent layout_height 时,我似乎没有得到我认为应该得到的结果。
我有一个带有 android:orientation="vertical" 的 LinearLayout 根元素。在这个 LinearLayout 中,我想要三个元素:- TextView - 列表显示- TextView
对于这两个 TextView,我都设置了 android:layout_height="wrap_content" 以便它们的高度只达到显示其内容所需的高度。问题是,我希望一个 TextView 位于表单的顶部,另一个位于表单的底部,而 ListView 填充表单上的任何可用空间。所以这是我的 xml 布局的样子:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="Top TextView" />
<ListView
android:id="@+id/listView_Species"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="Bottom TextView" />
但它不起作用。这就是我得到的。我选择了 ListView,以便突出显示。请注意它是如何一直延伸到表单底部的,将底部的 TextView 推离表单。
当我将 ListView 的 layout_height 属性更改为某个固定值(例如 180dp)时,这就是表单的外观。我只是发布这个来证明底部的 TextView 在那里,但我仍然不知道如何将它固定到屏幕底部,而 ListView 占据了剩余的任何空间,但在两个 TextView 之间。
提前致谢。
最佳答案
虽然其他答案试图解决您的问题(他们实际上并没有——他们建议您做一些看起来相似但在不同设备上可能看起来不错也可能不好看的东西),但没有人填补了您对 LinearLayouts 和 match_parent 知识的空白。这些差距非常普遍——Google 的文档仍然远远不够出色。
首先,Views 如何在 LinearLayout 中工作?为了简单起见,让我们使用 orientation="vertical"
完成绘制 LinearLayout 的过程。
match_parent
或 fill_parent
(同一事物的旧名称),则 View 的高度将被拉伸(stretch)以填满整个查看区域。如果高度为 wrap_content
,则测量 View 占用的垂直空间并将该空间用于 View 。如果高度是一个非零数字,则为 View 的高度使用恰好那么多的像素(如果太小可能会被裁剪)。如果高度为 0,请参见下文。重力
。这需要第二遍,存储所有 View 的重力,然后按比例分配它们的高度。您可以猜到,第二遍使布局所需的时间加倍,这对于简单布局而言并不重要。示例说明:测量 LL 的第一个子项(第一个 TextView)并占用一定数量的像素。然后您的 ListView 占用所有剩余空间(通过 match_parent
)。然后你的第二个 TextView 根本没有被绘制,因为它位于屏幕底部。这几乎就是您所观察到的,但现在您明白为什么了。
解决方案:使用RelativeLayout
。在这种情况下效果很好。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/top_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:textSize="30sp"
android:text="Top TextView" />
<TextView
android:id="@+id/bottom_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:textSize="30sp"
android:text="Bottom TextView" />
<ListView
android:id="@+id/listView_Species"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/top_tv"
android:layout_above="@id/bottom_tv"
/>
</RelativeLayout>
RelativeLayout 告诉布局 inflater 在顶部绘制第一个 TextView,然后在底部绘制第二个 TextView,然后用您的 ListView 填充其余空间。我相信这正是您想要的。
欢迎使用安卓。您会经常使用这种模式!
关于android - match_parent 未按预期执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18299588/
我正在尝试创建一个彩色圆圈并将其分配给我的 GridView 的 ImageView。 这是我的代码: ImageView ivColor; ivColor = new ImageView(MainA
我正在尝试为 ArrayAdapter 创建 View 。我就是这样做的: FrameLayout rowView = new FrameLayout(context); rowView.setBac
我想在 2 个 EditText 的右边有一个 ImageButton 我试过了 RelativeLayout:但是 ImageView layout_height="match_parent" 不起
我有一个带有 ImageButton 的布局。我现在要做的是将一个 TextView float 在那个 ImageButton 的角落。我将 ImageButton 替换为:
我第一次在互联网代码中遇到属性“Match_Parent”。在此之前,我一直在使用 Fill_Parent 和 Wrap_Content。 我想要什么 Match_parent 属性的用途是什么? 最
在我的布局文件中,我使用根 ScrollView 和子 LinearLayout。 我对此进行了搜索,但没有得到帮助。我在父 View 和 subview 中设置了 match_parent。 但
我尝试实现自定义操作栏。这是 xml: 这是Java代码: public class CustomActionBarActivity extends AppCompatActivity
我的应用程序以 android Sdk 的 v10 为目标,但具有 minSdkVersion 的 v6。默认情况下,“match_parent”属性将用于宽度或高度。我应该为 fill_parent
引入 match_parent 和弃用 fill_parent 的原因是什么,因为两者意思相同。这种变化不会妨碍向后兼容吗? 最佳答案 使用 match_parent 而不是 fill_parent
我想这应该是一个相当容易回答的问题,如果您比我更了解 XML 布局的话。在使用 match_parent layout_height 时,我似乎没有得到我认为应该得到的结果。 我有一个带有 and
android studio 2.0 beta5 我注意到,当我在工具栏中包含一个布局时,该布局的左边缘永远不会与工具栏父级的左边缘对齐,即使我已将两者都设置为 match_parent。 这是我的
我制作了带有搜索和设置图标的自定义工具栏。当我点击搜索图标时,edittext 应该与 match_parent 匹配,并且应该占据可用空间直到搜索图标。然而它并没有发生。它只是在左上角出现非常小的空
我尝试使用此 xml 代码制作自定义 View : 我用这段代码运行通知: protected void onCreate(Bundle savedInstanceState) {
我在 TableRow 中有 LinearLayout。 LinearLayout 在代码中启动,这样: LinearLayout mainRowLayout = new LinearLayout(
我的申请有问题。我有一张横跨整个屏幕 (ImageView) 的图像,其中包含以下 xml 代码: 我的问题是图像位于 imageview 本身的中心。它需要居中,如下图所示: 左边的图片是
我有一个水平线性布局,包含两个布局。我希望 right 布局与内容 (wrap_content) 一样宽。 left 布局应填充剩余空间。 我尝试在左侧布局(相对布局)上使用“match_parent
我正在尝试在 TAB 中将 Snakbar 设为 MatchParent。我所做的是: Snackbar snackbar = Snackbar .make(coordinat
我有一个简单的看法如下; 即使 LinearLayout 的高度和宽度都明确设置为匹配其父级,它也匹配 CardView 的宽度但在高度方向包裹其内容。为什
当我使用 Android Studio 创建一个新的 Android 应用程序项目时,文件 activity_main.xml 包含以下内容。 为什么 TextView 的 layout_width
我正在使用 drawable 设置 RelativeLayout 的背景,这里是 correct result第一次打开 Activity 时。 但是,当我切换到另一个 Activity (具有相同背
我是一名优秀的程序员,十分优秀!