gpt4 book ai didi

android - 在 LinearLayout 中划分布局的问题

转载 作者:行者123 更新时间:2023-11-29 16:55:34 25 4
gpt4 key购买 nike

我试图在 80% 的屏幕和一个按钮中划分一个 GridView,在其余 20% 中划分一个 adView。这是我的 XML。在 Android 中布局多个元素的最佳做法是什么?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="10"
tools:context="com.apptree.snapper.dashboard.DashboardActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weight="8"
android:orientation="vertical">
<GridView
android:id="@+id/dashboard_grid_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"></GridView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weight="2"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:id="@+id/dashboard_takeSnapButton"
android:text="@string/singin_take_snap_button"
android:layout_height="50dp"
/>
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/dashboard_adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-1390609726414683/7854545655"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true">
</com.google.android.gms.ads.AdView>
</LinearLayout>
</LinearLayout>

但它并没有给我那个结果。我缺少什么?

这是输出。

enter image description here

最佳答案

当你想使用 android:weight 时,你必须将 layout_height 代码更改为:

android:layout_height="0dp"

关于android - 在 LinearLayout 中划分布局的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45127118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com