gpt4 book ai didi

android - 布局未在 android 自定义组件中膨胀

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:48:15 24 4
gpt4 key购买 nike

我的自定义 View (派生自 LinearLayout)出现空指针异常,因为它找不到其 subview 。这是代码:

public class MyView extends LinearLayout
{
public MyView(Context context, AttributeSet attrs)
{
this(context, attrs, 0);
}

public MyView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}

private TextView mText;

@Override
protected void onFinishInflate()
{
super.onFinishInflate();
mText = (TextView) findViewById(R.id.text);

if (isInEditMode())
{
mText.setText("Some example text.");
}
}
}

这是布局(my_view.xml):

<?xml version="1.0" encoding="utf-8"?>
<com.example.views.MyView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<TextView
android:id="@+id/text"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:ellipsize="end"
android:maxLines="4"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:text="Some text" />

</com.example.views.MyView>

这是我将其放入 XML 文件的方式:

    <com.example.views.MyView
android:id="@+id/my_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

但是当我尝试在布局编辑器中预览它时,我在 mText.setText(...) 上得到了一个 NPE,因为 getViewById() 返回 null

这是怎么回事?

澄清

我希望它能起作用的原因是,如果我这样做了

MyView v = (MyView)inflater.inflate(R.layout.my_view);
((TextView)v.findViewById(R.id.text)).setText("Foo");

一切正常。这不是布局充气器在通过布局文件时所做的吗?在任何情况下,我怎样才能正确处理这两种情况(而不会得到毫无意义的嵌套 View )?

最佳答案

在您的 XML 文件中,您尝试使用自定义 View 类 (com.example.views.MyView),同时尝试在其中添加一个 TextView。这是不可能的。

以下是您需要更改的内容:

您必须在代码中扩充 XML 文件:

public MyView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
LayoutInflater.from(context).inflate(R.layout.<your_layout>.xml, this);
}

然后像这样修改 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="wrap_content"
android:orientation="horizontal" >

<TextView
android:id="@+id/text"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:ellipsize="end"
android:maxLines="4"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:text="Some text" />

</LinearLayout>

关于android - 布局未在 android 自定义组件中膨胀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13122955/

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