我正在创建一个非常复杂的复合组件,它会抛出一个原因未知的InflateException。我能够在下面的简化版本中复制错误,这只是一个包含两个文本视图的组件。任何有关识别错误或跟踪错误的帮助都将不胜感激。
composite_component.xml
<?xml version="1.0" encoding="utf-8"?>
<com.cc.CompositeComponent
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:text="One"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="Two"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</com.cc.CompositeComponent>
CompositeComponent.java
package com.cc;
import android.app.Activity;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
public class CompositeComponent extends LinearLayout {
public CompositeComponent(Context context) {
super(context);
}
public CompositeComponent(Context context, AttributeSet attributes){
super(context, attributes);
}
protected void onFinishInflate() {
super.onFinishInflate();
((Activity)getContext()).getLayoutInflater().inflate(R.layout.composite_component, this);
}
}
CompositeActivity.java
package com.cc;
import android.app.Activity;
import android.os.Bundle;
public class CompositeActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.composite_component);
}
}
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cc"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="CompositeComponent">
<activity android:name="CompositeActivity"
android:label="CompositeComponent">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:0)
在composite_component.xml
文件中,尝试更改此行:
<com.cc.CompositeComponent
以下内容:
<LinearLayout
然后,创建您的活动传递给setContentView()
的第二个布局:
文件: composite_activity_layout.xml
<com.cc.CompositeComponent
android:id="@+id/my_composite"
<!-- other stuff ->>
文件: CompositeActivity.java
protected void onCreate( Bundle state ) {
super.onCreate( state );
setContentView(R.layout.composite_activity_layout);
// ...
}
您正在做的是导致递归布局膨胀。您膨胀CompositeComponent
,然后在onFinishInflate()
方法中,CompositeComponent
会膨胀自己的另一个副本。
此外,您可能需要调查使用Android's merge tag以避免额外LinearLayout
闲置。