gpt4 book ai didi

android - 将具有 xml 布局的 fragment 动态添加到 GridLayout 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:51:09 27 4
gpt4 key购买 nike

在我们的应用程序中,我们尝试将 fragment 动态添加到 GridLayout。空网格布局是在 XML 中定义的, fragment 的布局也是如此。在运行时,我们检查一些数据,并根据这些数据确定要添加到布局中的 fragment 数量以及每个 fragment 要使用的布局。当我们让 fragment 为其生成的 View 分配大小时,一切正常,但是如果我们在布局文件中为 fragment 指定大小,则网格布局中不会显示任何内容。显然,我们可以在创建 View 时简单地指定大小,但我们更愿意在 fragment 的 xml 布局中执行此操作,因为这将使我们能够利用 Android 的内置系统为每个设备选择正确的布局。

我正在使用支持库 fragment 。我不会使用支持库 GridLayout,如果有区别的话

相关代码和xml如下:

GridLayout XML:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView
android:id="@+id/grid_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_fragment"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginRight="8dp"
android:layout_marginTop="?android:attr/actionBarSize"
android:overScrollMode="ifContentScrolls" >

<GridLayout
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alignmentMode="alignMargins"
android:animateLayoutChanges="true"
android:columnCount="3"
android:columnOrderPreserved="true"
android:orientation="horizontal"
android:overScrollMode="ifContentScrolls"
android:rowOrderPreserved="true" >
</GridLayout>
</ScrollView>
</merge>

fragment XML 示例

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="200dp"
android:layout_height="100dp"
android:alpha="1" >

<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="1.0" />
</RelativeLayout>

fragment 的 onCreateView() 方法

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreateView(inflater, container, savedInstanceState);
View view;
GridLayout.Spec rowSpec = GridLayout.spec(mRowStart, mRowSpan);
GridLayout.Spec columnSpec;
GridLayout.LayoutParams childParams;
if (large) {;
view = inflater.inflate(R.layout.my_place_large, container, false);
columnSpec = GridLayout.spec(mColumnStart, 2);
childParams = new GridLayout.LayoutParams(rowSpec, columnSpec);
//childParams.width = 200; //If I do this everything works regardless of the layout size
} else {
view = inflater.inflate(R.layout.my_place_small, container, false);
columnSpec = GridLayout.spec(mColumnStart, 1);
childParams = new GridLayout.LayoutParams(rowSpec, columnSpec);
//childParams.width = 100; //If I do this everything works regardless of the layout size
}
childParams.setMargins(0, 0, 0, 0);
//childParams.height = 100; //If I do this everything works regardless of the layout size
view.setLayoutParams(childParams);
view.setId(ID);
return view;
}

向布局添加 fragment

private void populateGrid() {
RelativeLayout gridParent = (RelativeLayout) mParentActivity.findViewById(R.id.locations);
mLocationsGrid = (GridLayout) gridParent.findViewById(R.id.grid);
nColumns = mLocationsGrid.getColumnCount();
mAdapter = new MyAdapter(mContext, this, mResolver); //This is how I keep track of the various fragments depending on my app's state
int nCards = mAdapter.getNumberOfCards();
FragmentManager fragmentManager = mParentActivity.getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
for (int i = 0; i < nCards; ++i) {
fragmentTransaction.add(mLocationsGrid.getId(), mAdapter.getFragmentAtIndex(i), String.valueOf(i));
}
fragmentTransaction.commit();
mPopulated = true;
}

我认为应该涵盖它。重申一下,如果我取消注释在 onCreateView() 中显式设置维度的行,它们会正确显示在 GridLayout 中,因此我知道跟踪 fragment 和此类工作的所有内容, fragment 事务也是如此。当我尝试在 fragment 的 xml 中指定大小时出现问题,在这种情况下我得到一个空白屏幕。

感谢您的想法、建议和思考。谢谢,贾里德

最佳答案

这很晚才来,但在偶然的情况下这可能仍然有用。问题是当您动态设置新的 LayoutParams 时,您正在覆盖 XML 布局参数。 IE,当你这样做时:

 view.setLayoutParams(childParams);

这将清除 XML 的原始高度和宽度设置。仅仅因为您在代码中将 childParams 宽度/高度留空并不意味着未设置值。在 GridLayout 的情况下,它们被设置为 undefined

解决方法是首先保存 View 现有 LayoutParam 的高度/宽度,并在动态创建新 LayoutParam 时使用它。示例:

if (large) {;
view = inflater.inflate(R.layout.my_place_large, container, false);
ViewGroup.LayoutParams oldParams = view.getLayoutParams();
columnSpec = GridLayout.spec(mColumnStart, 2);
childParams = new GridLayout.LayoutParams(rowSpec, columnSpec);
childParams.width = oldParams.width;
}

这将允许您在代码中应用行/列规范的同时保持 XML 中的宽度/高度。

关于android - 将具有 xml 布局的 fragment 动态添加到 GridLayout 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13391010/

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