gpt4 book ai didi

android - "Workspace" subview 未在 Google "iosched"应用程序上填充高度

转载 作者:太空狗 更新时间:2023-10-29 12:56:31 26 4
gpt4 key购买 nike

我正在玩弄 iosched来自 Google I/O 2011 的应用程序。查看 ScheduleFragment,我在 Workspace 上测试不同的 View children 来回翻动书页。但是,我无法让我的 child 的观点来填充 parent 。我添加了几种背景颜色和一些填充以显示所有内容的布局。这是我的测试...

我像这样在 fragment_schedule.xml 中的“工作区”项中添加了红色背景色...

android:background="#cc0000"

然后,我没有为 subview 使用 blocks_content.xml,而是创建了自己的 pending_content.xml,它只是一个绿色背景的 LinearLayout(高度为 fill_parent)和一个蓝色背景的 TextView(高度也为 fill_parent)用一个简单的文本行。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00cc00"
android:padding="5dip"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:id="@+id/text_view"
android:background="#0000cc"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Pending Content"
android:textColor="#ffffff"
/>
</LinearLayout>

我添加我的 View 就像 I/O 应用程序有“天”...

ViewGroup root = (ViewGroup) inflater.inflate(R.layout.fragment_schedule, null);
mWorkspace = (Workspace) root.findViewById(R.id.workspace);

ShootView view = new ShootView();
view.index = mViews.size();
view.rootView = (ViewGroup) inflater.inflate(R.layout.pending_content, null);
view.label = "Pending";
mWorkspace.addView(view.rootView);
mViews.add(view);

这是我在设备上查看时看到的内容:

http://www.milescrew.com/images/workspace.png

您会看到红色的 Workspace 填充了可用的父空间,但绿色的 LinearLayout 没有。我错过了什么?

最佳答案

问题是在你的通货膨胀步骤中:

view.rootView = (ViewGroup) inflater.inflate(R.layout.pending_content, null);

您丢失了在 XML 中定义的 LayoutParams,您的 View 实际上以默认布局参数结束。

您需要做的是提供一个 root 并且在充气期间不要将充气布局附加到根:

view.rootView = (ViewGroup) inflater.inflate(R.layout.pending_content, mWorkspace, false);

这将允许布局 inflater 从解析的 XML 属性为您的 subview 构造一组适当的 LayoutParams

关于android - "Workspace" subview 未在 Google "iosched"应用程序上填充高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6229594/

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