gpt4 book ai didi

Android Fragment 不尊重 match_parent 作为高度

转载 作者:IT王子 更新时间:2023-10-29 00:01:29 26 4
gpt4 key购买 nike

对于大量的代码转储感到抱歉,但我真的迷路了。

MyActivity.java onCreate:

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_singlepane_empty);
mFragment = new PlacesFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.root_container, mFragment)
.commit();

PlacesFragment.java onCreateView:

mRootView = (ViewGroup) inflater.inflate(R.layout.list_content, null);
return mRootView;

注意事项: mRootView 是一个 ViewGroup 全局的,我相信它没有问题。 PlacesFragment 是一个 ListFragment

布局:

activity_singlepane_empty.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root_container"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00f">
<include layout="@layout/actionbar"/>

<!-- FRAGMENTS COME HERE! See match_parent above -->

</LinearLayout>

list_content.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listContainer"
android:background="#990"
>

<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false" />

<TextView android:id="@id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/no_data_suggest_connection"/>

</FrameLayout>

问题: 如您所见,预期的行为是让上面的空 TextView 出现在屏幕中央。在 Eclipse 中的设计预览上,是可以的。只有当作为 fragment 添加到 root_view 时,FrameLayout 才不会填满整个屏幕。

root_container 为蓝色,FrameLayout 为淡黄色,请参见下文进行调试。 黄色 Pane 不应该填满整个屏幕吗?!?!?!?

enter image description here

最佳答案

我遇到了同样的问题,我认为当您使用 null 为 Fragment 的 onCreateView 中的布局充气时会发生这种情况,就像您在此处所做的那样:

mRootView = (ViewGroup) inflater.inflate(R.layout.list_content, null);

相反,您必须这样做:

mRootView = (ViewGroup) inflater.inflate(R.layout.list_content,container, false);

container 是 Viewgroup。至少,这为我解决了问题。

关于Android Fragment 不尊重 match_parent 作为高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7934802/

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