1
我創建了一個名爲CaptureView
定製SurfaceView
,並試圖將其添加到main.xml
文件,以避免NullPointerException異常:如何使用自定義視圖或者當SurfaceViews
<dev.recorder.client.CaptureView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/capturePreview"/>
應用程序似乎工作正常,但如果我從main.xml
選項卡切換到在Eclipse中佈局文本NullPointerException
而不是佈局預覽。
在我綁定的控件下面的方式活動:
setContentView(R.layout.main);
bindControls();
private void bindControls()
{
videoPreview = (CaptureView)findViewById(R.id.capturePreview);
txtstatus = (TextView)findViewById(R.id.txtMode);
txtTimer = (TextView)findViewById(R.id.txtTime);
}
有誰知道這個問題如何解決?
所以問題就是它沒有在Eclipse中正確地預覽你的預覽。 – 2009-06-13 00:41:27