ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

android – 在启动另一个活动后单击Listview按钮完成或销毁活动

2019-07-27 18:24:16  阅读:224  来源: 互联网

标签:activity-finish android baseadapter getview


我有一个具有Listview的Activity ListActivity,另一个类CustomListAdapter扩展了BaseAdapter.

ListActivity中的代码

customAdapter = new CustomListAdapter(list);
TripList.setAdapter(customAdapter);

在CustomListAdapter的getView()中,我膨胀了一个布局.有一个按钮,点击该按钮,我开始另一个活动.

我想在另一个活动开始后完成ListActivity.
使用以下代码我的应用程序正在崩溃.

((Activity) ctx).finish();

记录是

01-05 11:06:04.319: E/AndroidRuntime(4319): FATAL EXCEPTION: main
01-05 11:06:04.319: E/AndroidRuntime(4319): Process: com.example.myapp, PID: 4319
01-05 11:06:04.319: E/AndroidRuntime(4319): java.lang.NullPointerException
01-05 11:06:04.319: E/AndroidRuntime(4319):     at com.example.myapp.CustomListAdapter$1.onClick(CustomListAdapter.java:71)

请帮帮我.

解决方法:

首先,您可以发布您的Logcat.

FLAG_ACTIVITY_CLEAR_TOP

If set, and the activity being launched is already running in the
current task, then instead of launching a new instance of that
activity, all of the other activities on top of it will be closed and
this Intent will be delivered to the (now on top) old activity as a
new Intent.

FLAG_ACTIVITY_NEW_TASK

if used to start the root activity of a task, it will bring any
currently running instance of that task to the foreground, and then
clear it to its root state.

您可以使用Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK

最后,它应该是,

   Intent intent = new Intent(ctx, NewActivityName.Class);
   intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |Intent.FLAG_ACTIVITY_NEW_TASK);
   intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
   startActivity(intent);

标签:activity-finish,android,baseadapter,getview
来源: https://codeday.me/bug/20190727/1556458.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有