gpt4 book ai didi

android - 将 include 标签与已经存在的 GridView 一起使用

转载 作者:行者123 更新时间:2023-11-30 03:49:17 26 4
gpt4 key购买 nike

我在 xml 中创建了一个用于所有 Activity 的操作栏。我为此使用了 include 标签。
我的一个 Activity 只有一个 GridView 标签。你可以在下面看到它的来源:

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gv_level"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@drawable/background_gradient"
android:columnWidth="100dp"
android:gravity="center"
android:numColumns="auto_fit"
android:stretchMode="columnWidth" >
</GridView>

它没有任何问题,但是当我向其中添加 include 标签或任何其他标签时(类似于下面的源代码)

<?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" >

<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
layout="@layout/action_bar" />

<GridView
android:id="@+id/gv_level"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@drawable/background_gradient"
android:columnWidth="100dp"
android:gravity="center"
android:numColumns="auto_fit"
android:stretchMode="columnWidth" >
</GridView>

它没有给我一个错误,但是当 Activity 出现时 GridView 被隐藏了。这个问题有解决方案吗?

最佳答案

but the gridview is hidden when activity apear. it there ant solution for it? thanks.

您可能希望将 LinearLayout方向设置为垂直,这样您包含的布局就不会插入 GridView 在右侧屏幕之外,或者您可以使用 wrap_content 作为包含布局的宽度。使用方向改变:

<?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" >

<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
layout="@layout/action_bar" />
// ... rest of the layout

关于android - 将 include 标签与已经存在的 GridView 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14412482/

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