gpt4 book ai didi

android - 在 android 中带有标签栏的 gridview

转载 作者:行者123 更新时间:2023-11-30 03:51:14 25 4
gpt4 key购买 nike

我必须开发一个 android 应用程序。

在这里,我必须开发如下 GridView 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/Layout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/status"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

android:text="Mercuryminds Shoppingcart Application"

android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#040404"
android:gravity="center" />

<GridView
android:layout_height="wrap_content"
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:numColumns="auto_fit"

android:horizontalSpacing="10dp"
android:verticalSpacing="10dp">
</GridView>

<include
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/footer" />


</LinearLayout>

这里的布局页脚是标签栏。

   <?xml version="1.0" encoding="utf-8"?>
<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
android:layout_width="match_parent"
android:id="@+id/linearLayout1"
android:layout_height="match_parent"
android:orientation="vertical">

<TabWidget
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs">
</TabWidget>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@android:id/tabcontent">
</FrameLayout>
</LinearLayout>
</TabHost>

但我必须运行该应用程序,这意味着标签栏未显示在我的主视图中。我的布局文件有什么问题。请帮助我。

最佳答案

layout_weight="1" 添加到您的 gridView 和 layout_height="0dp"

像这样

  <GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:horizontalSpacing="10dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp" >
</GridView>

关于android - 在 android 中带有标签栏的 gridview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14118253/

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