早上好鄉親一個NullPointerException,自定義部件拋出的setRequestedViewSize
我工作的一個Android應用程序,我已經遇到一個有點問題。我創建了一個擴展View的新類。我重寫了適當的方法(構造函數,onDraw,onMeasure),並通過應用程序佈局XML(稱爲main.xml)實例化視圖。
在我的應用程序的源代碼,我有以下代碼:
public class CustomViewTest extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/* I *think* I need to setContentView before I actually can use any of the widgets on the form. */
setContentView(R.layout.main);
Button b = (Button)findViewById(R.id.button);
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
// my new widget
newWidget s = (newWidget)findViewById(R.id.testWidget);
s.setRequestedViewSize(300);
}
});
}
}
這裏的問題是,s.setRequestedViewSize(300)拋出一個NullPointerException。有沒有人遇到過,或可以借給我一些建議?
[編輯] main.xml中看起來是這樣的:
它返回null,但XML是這樣的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.testing.CustomViewTest02.newWidget
android:id="@+id/testWidget"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
></Button>
</LinearLayout>
謝謝你! 山姆
是的,這顯示* *精細(我只是畫就是查看不同的顏色暫時的,直到這個問題解決)。只有當我按下按鈕時,我纔會得到一個強制關閉。 – Sam 2011-01-19 14:20:21