其他分享
首页 > 其他分享> > 尝试膨胀自定义视图时遇到stackoverflow错误

尝试膨胀自定义视图时遇到stackoverflow错误

作者:互联网

我有custom_layout.xml:

<?xml version="1.0" encoding="utf-8"?>

<com.example.MyCustomLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

<!-- different views -->

</com.example.MyCustomLayout>

及其类:

public class MyCustomLayout extends LinearLayout {

public MyCustomLayout(Context context, AttributeSet attrs) {
    super(context, attrs);

    LayoutInflater.from(context).inflate(R.layout.custom_layout, this, true);
    setUpViews();
    }
//different methods
}

活动,包括以下布局:

public class MyActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_activity);

    setUpViews();
}

和my_activity.xml:

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

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <com.example.MyCustomLayout
        android:id="@+id/section1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" />
    <com.example.MyCustomLayout
        android:id="@+id/section2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" />

</LinearLayout>

所以,当我从以下位置删除注释块时出现问题:LayoutInflater.from(context).inflate(R.layout.custom_layout,this,true);并以图形方式转到my_activity.xml. Eclipse思考然后崩溃.看起来它试图多次膨胀我的自定义视图,但我不明白为什么.重新启动Eclipse时,我在错误日志中收到此错误:java.lang.StackOverflowError

解决方法:

在您的custom_layout.xml中,将< com.example.MyCustomLayout替换为另一个布局(例如LinearLayout):

<?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="vertical" >

<!-- different views -->

</LinearLayout>

甚至最好使用merge标签(并在MyCustomLayout类中设置方向).现在,当Android加载my_activity.xml时,它将找到您的自定义视图并将其实例化.实例化您的自定义视图时,Android会在MyCustomLayout构造函数中为custom_layout xml文件充气.发生这种情况时,它将再次找到< com.example.MyCustomLayout ...(来自刚刚膨胀的custom_layout.xml),这将导致MyCustomLayout再次实例化.这是一个递归调用,它将最终引发StackOverflowError.

标签:stack-overflow,android-inflate,android-custom-view,android
来源: https://codeday.me/bug/20191101/1982818.html