gpt4 book ai didi

android - 如何填充从 LinearLayout 扩展的复合 View 组?

转载 作者:太空狗 更新时间:2023-10-29 15:22:07 24 4
gpt4 key购买 nike

我试图在从 XML 文件扩充组后创建一个复合 View 组。

View 组由以下组成:一个 LinearLayout 根,2 个子 LinearLayout。我能够在布局编辑器中正确看到布局;但是,当我尝试从编辑器添加一个 View (比如一个按钮)时,该 View 没有显示,应用程序立即强制关闭。有人告诉我我可能需要重写 onLayout 方法才能正确绘制 View 组件,但我很困惑。

我的类(class):

public class FocusBox extends LinearLayout {
private LinearLayout rootLayout,
contentLayout,
topLayout;

public FocusBox(Context context)
{
super(context, null);
}
public FocusBox(Context context, AttributeSet attrs) {
super(context, attrs);

LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.focus_box, this);

rootLayout = (LinearLayout)findViewById(R.id.focusBoxParent);
contentLayout = (LinearLayout)findViewById(R.id.focusBottom);
topLayout = (LinearLayout)findViewById(R.id.focusTop);

}
}

还有 xml:

<?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:padding="4dp"
android:id="@+id/focusBoxParent"
android:orientation="vertical">
<LinearLayout
android:background="@drawable/gradients"
android:layout_weight=".1"
android:gravity="center"
android:id="@+id/focusTop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:text="TextView"
android:id="@+id/focusTitle"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_width="wrap_content"/>
</LinearLayout>
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_weight=".9"
android:id="@+id/focusBottom"
android:background="@drawable/gradient2"
android:orientation="horizontal">
</LinearLayout>
</LinearLayout>

最佳答案

通常,如果您从有效的 XML 扩充布局,则不会出现错误。您应该重新构建并重新部署该应用程序。还要检查您是否在其他类的导入语句中使用了正确的类(您可以使用来自某些第 3 方库的 FocusBox 而不是您制作的那个)

关于android - 如何填充从 LinearLayout 扩展的复合 View 组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6528120/

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