Android 中的视图在底部视图和顶部视图之间居中

发布于 2024-11-07 00:57:26 字数 189 浏览 1 评论 0原文

我需要以某种方式执行此操作:

我尝试使用相对布局,我放置了顶部 imageview 和底部按钮,但是怎么办我将网格视图放在中心?但是在顶部图像和底部按钮之间呢?

I need somehow to do this :

I tried playing with Relative Layout, I placed top imageview and bottom button but how do I place my gridview in the center? BUT BETWEEN top image and bottom button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

孤城病女 2024-11-14 00:57:26

让顶部图像和底部按钮使用 wrap_content 作为高度,GridView 使用 0dip 作为高度,权重为 1。这将导致顶部和底部元素首先测量,GridView 将获得中间的所有剩余空间。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView android:id="@+id/top_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <GridView android:id="@+id/grid"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" />
    <Button android:id="@+id/bottom_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

Have the top image and the bottom button use wrap_content for height, and the GridView use 0dip for height along with a weight of 1. This will cause the top and bottom elements to measure first, and the GridView will get all remaining space in the middle.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView android:id="@+id/top_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <GridView android:id="@+id/grid"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" />
    <Button android:id="@+id/bottom_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>
離人涙 2024-11-14 00:57:26

阿达普的回答对我不起作用。这就是我发现完美工作的方法:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <ImageView android:id="@+id/top_image"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true" />
        <Button android:id="@+id/bottom_button"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />
        <LinearLayout 
            android:id="@+id/container_layout"
            android:orientation="vertical"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:layout_above="@id/bottom_button"
            android:layout_below="@id/top_image"
            android:gravity="center" >
            <GridView android:id="@+id/grid"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </LinearLayout>
    </RelativeLayout>

我将其与其他 LinearLayouts 一起使用,以代替 GridView,并使用 android:gravity="center" 在最里面的布局上设置,以使其所有文本视图和图像水平和垂直居中。

adamp's answer didn't work for me. This is what I found to work perfectly:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <ImageView android:id="@+id/top_image"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true" />
        <Button android:id="@+id/bottom_button"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />
        <LinearLayout 
            android:id="@+id/container_layout"
            android:orientation="vertical"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:layout_above="@id/bottom_button"
            android:layout_below="@id/top_image"
            android:gravity="center" >
            <GridView android:id="@+id/grid"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </LinearLayout>
    </RelativeLayout>

I've used this with other LinearLayouts in place of the GridView, with android:gravity="center" set on the innermost layout as well to make all of its text views and images centered horizontally as well as vertically.

Smile简单爱 2024-11-14 00:57:26

使用这样的东西

<?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="wrap_content"
    android:gravity="center">
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/table">
        <TableRow 
            android:weightSum="100">
            <ImageView android:id="@+id/image1" 
                android:src="@drawable/icon"
                android:visibility="visible" 
                android:gravity="center"
                android:layout_weight="50" />
        </TableRow>
        <TableRow 
            android:weightSum="100">
            <GridView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content">
            </GridView>
        </TableRow>
        <TableRow 
            android:weightSum="100">
            <Button android:id="@+id/btn1"
                android:visibility="visible" 
                android:gravity="center"
                android:layout_weight="50" />
        </TableRow>
    </TableLayout>
</LinearLayout>

use something like this

<?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="wrap_content"
    android:gravity="center">
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/table">
        <TableRow 
            android:weightSum="100">
            <ImageView android:id="@+id/image1" 
                android:src="@drawable/icon"
                android:visibility="visible" 
                android:gravity="center"
                android:layout_weight="50" />
        </TableRow>
        <TableRow 
            android:weightSum="100">
            <GridView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content">
            </GridView>
        </TableRow>
        <TableRow 
            android:weightSum="100">
            <Button android:id="@+id/btn1"
                android:visibility="visible" 
                android:gravity="center"
                android:layout_weight="50" />
        </TableRow>
    </TableLayout>
</LinearLayout>
墨离汐 2024-11-14 00:57:26

你可以试试这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView android:id="@+id/top_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <GridView android:id="@+id/grid1"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" />
    <Button android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

You could try this:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView android:id="@+id/top_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <GridView android:id="@+id/grid1"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" />
    <Button android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>
无声静候 2024-11-14 00:57:26

将这些添加到您的网格视图中:

android:layout_above="@id/bottom_button"
android:layout_below="@id/top_image"

Add these to your Grid View:

android:layout_above="@id/bottom_button"
android:layout_below="@id/top_image"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文