gpt4 book ai didi

android - 如何在另一个自定义 View 中添加自定义 View ?

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

我正在尝试将 CustomViewBeta(一个扩展的 RelativeLayout)添加到 CustomViewAlpha(一个扩展的 LinearLayout)——想法是 CustomViewAlpha 将包含一堆 CustomViewBetas 和 ListView。无论我尝试什么,它都不起作用。我要么什么都看不到——没有 CustomViewBetas,要么当我在 CustomViewBeta 中的一个 TextView 上尝试 setText 时它给了我一个 NPE

CustomViewAlpha 工作正常,因为它是硬编码在 fragment 的 XML 中的:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
...>
<com.path.CustomViewAlpha
android:id="@+id/customviewalpha"
android:orientation="vertical"
android:layout_gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>

代码为:

public class CustomViewAlpha extends LinearLayout {
private Context mContext;

public CustomViewAlpha (Context context) {
super(context);
this.mContext = context;
}

public CustomViewAlpha (Context context, AttributeSet attrs) {
super(context, attrs);
this.mContext = context;
}

public CustomViewAlpha (Context context, AttributeSet attrs, int defStyle){
super(context, attrs,defStyle);
this.mContext = context;
}

public void addCustomViewBeta(String someString){
CustomViewBeta customViewBeta = new CustomViewBeta(mContext);
addView(customViewBeta);
}

CustomViewBeta 未硬编码在 Fragment 的 XML 中,而是以编程方式添加:

公共(public)类 CustomViewBeta 扩展了 RelativeLayout{ 私有(private)上下文 mContext;

private TextView textView;

public CustomViewBeta (Context context) {
super(context);
this.mContext = context;
init();
}

public CustomViewBeta (Context context, AttributeSet attrs) {
super(context, attrs);
this.mContext = context;
init();
}

public CustomViewBeta (Context context, AttributeSet attrs, int defStyle){
super(context, attrs,defStyle);
this.mContext = context;
init();
}


private void init() {
LayoutInflater.from(mContext).inflate(R.layout.customviewbeta, null, false);
textView = (TextView) findViewById(R.id.tripleexpandablelistview_category_name);
textView.setText("ASDASDASDAD");
}

有了这个 XML 是:

<?xml version="1.0" encoding="utf-8"?>
<com.path.CustomViewBeta
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/customviewbeta_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</com.path.CustomViewBeta>

我通常会在“textView.setText("ASDASDADAD");”上遇到 NPE行,因为 TextView 为空。有什么我想念的吗?我是否应该尝试为 CustomViewBeta 膨胀 XML 而只是以编程方式进行(以编程方式一个接一个地添加 TextView ?)?谢谢。

最佳答案

你的初始化错误

private void init() {
LayoutInflater.from(mContext).inflate(R.layout.customviewbeta, null, false);
textView = (TextView) findViewById(R.id.tripleexpandablelistview_category_name);
textView.setText("ASDASDASDAD");
}

最后一个参数必须是 true 才能将 TextView 添加到 RelativeLayout。还有 ViewGroup,有一个 static inflate 方法,所以你可以避免 LayoutInflater.from(mContext),你可以调用 inflate(mContext, R.layout.customviewbeta, this);

关于android - 如何在另一个自定义 View 中添加自定义 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29242486/

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