我一直在阅读很多类似的问题,试图找到解决方案,但没有运气。
MainActivity.java
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.game);
}
game.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:id="@+id/adView"
android:background="@drawable/ad"
android:layout_width="320dp"
android:layout_height="50dp"
/>
<my.package.MainGamePanel
android:id="@+id/gameView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/> </RelativeLayout>
MainGamePanel.java
public class MainGamePanel extends SurfaceView implements SurfaceHolder.Callback {
private MainThread thread;
public MainGamePanel(Context context, AttributeSet a) {
super(context, a);
View.inflate(context, R.layout.game, null);
onFinishInflate();
thread = new MainThread(getHolder(), this);
setFocusable(true);
thread.setRunning(true);
等。等
然后在MainGamePanel构造函数之外是函数:
@Override
protected void onFinishInflate() {
getHolder().addCallback(this);
}
还有一个MainThread.java文件,但我不认为这是问题。
这是运行时异常:
java.lang.RuntimeException: Unable to start activity ComponentInfo{my.package/my.package.MainActivity}: android.view.InflateException: Binary XML file line #13: Error inflating class my.package.MainGamePanel
如果我将setContentView
中的MainActivity
更改为setContentView(new MainGamePanel(this))
并从构造函数中删除AttributeSet
参数,并删除View.Inflate(context, R.layout.game, null);
,那么它可以正常工作,但我想弄清楚如何在xml文件中使用自定义视图。
答案 0 :(得分:1)
看起来你正在循环地夸大布局。你在R.layout.game上的setContentView,它包含一个MainGamePanel,它会膨胀R.layout.game,它包含一个MainGamePanel等。
你应该从onCreate方法中取出View.inflate行。据我所知,它无论如何都没有做任何事情。你也不应该明确地呼叫onFinishInflate
。当实际完成MainGamePanel实例的膨胀时,将自动调用它。