3
每當我嘗試構建ProgressBar時,它都會給出NullPointerException。網上的例子說第二個參數可以是null,即使它應該是AttributeSet?這可能是問題的一部分嗎?這是針對Android 1.5編譯的。Android新的ProgressBar沒有NullPointerException?
public class myListAdapter implements ListAdapter {
...
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Log.d(TAG,"getView");
LinearLayout view = new LinearLayout(context);
//This new ProgressBar causes N.P.E.:
ProgressBar p = new ProgressBar(context, null,android.R.attr.progressBarStyleSmall); ;
view.addView(p);
return view;
}
我發現有什麼問題,我用新的myListAdapter(ArrayListVariable)而不是正確的myListAdapter(this.getApplicationContext(),ArrayListVariable)調用它。 – anonymous 2011-05-20 03:33:33