我有兩個活動 1.列表視圖(多個項目與標題和鏈接) 2.文本視圖(當點擊列表視圖中的任何項目時,獲取鏈接,做xml解析並獲取內容並顯示)應用程序沒有運行之間切換活動
我用意圖從列表視圖切換到文本視圖活動。現在,在第一次點擊時,它將啓動文本查看活動。在按下設備上的按鈕後,它又回到列表視圖。 Uptil現在沒事了。
主要問題是,當第二次,我點擊列表視圖中的任何項目,Android應用程序給我錯誤「不幸的應用程序已停止」。 並點擊「確定」後,顯示第二項內容。而當第二次,我按下後退按鈕,應用得到了關閉
這裏是我的第二個活動
public class ColoumnView extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_coloumn_view);
Intent intent = getIntent();
String message = intent.getStringExtra(MainListActivity.EXTRA_MESSAGE);
TextView myColoumnView = (TextView)findViewById(R.id.ColoumnView);
myColoumnView.setText(message);
}
@Override
public void onBackPressed()
{
// code here to show dialog
super.onBackPressed();
finish();
}
這是我的第一個活動的地方創造一個意圖
protected void onPostExecute(List<ContentGetter.Content> contents) {
if (contents != null && mException == null) {
for(int i=0; i<contents.size();i++) {
if(contents.get(i).summary != null)
{
summaryContent= contents.get(i).summary;
}
else {
continue;
}
Intent intent = new Intent(MainListActivity.this,ColoumnView.class);
intent.putExtra(EXTRA_MESSAGE, summaryContent);
startActivity(intent);
Log.d(TAG, contents.get(i).summary != null ? contents.get(0).summary : "NULL");
}
} else {
if (mException instanceof IOException){
} else if (mException instanceof XmlPullParserException) {
}
}
}
部分編輯:這是崩潰日誌
11-01 13:11:46.274 2296-2296/com.example.talha.appforblog E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.talha.appforblog, PID: 2296
java.lang.NullPointerException: println needs a message
at android.util.Log.println_native(Native Method)
at android.util.Log.d(Log.java:139)
at com.example.talha.appforblog.MainListActivity$DownloadXmlTaskContent.onPostExecute(MainListActivity.java:241)
at com.example.talha.appforblog.MainListActivity$DownloadXmlTaskContent.onPostExecute(MainListActivity.java:206)
at android.os.AsyncTask.finish(AsyncTask.java:632)
at android.os.AsyncTask.access$600(AsyncTask.java:177)
at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:645)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
你可以發佈崩潰日誌,當空ptr異常來 – pvn
請檢查,我編輯了 – user3585510
替換** Log.d(TAG,contents.get(i).summary!= null?contents.get(0 ).summary:「NULL」); ** with ** Log.d(TAG,contents.get(i).summary!= null?contents.get(i).summary:「NULL」); ** –