gpt4 book ai didi

Android: Intent 通过通知传递给 Activity ……我没有在 Intent 中得到正确的额外信息

转载 作者:搜寻专家 更新时间:2023-11-01 09:11:13 25 4
gpt4 key购买 nike

您好,我遇到了这个问题。我有一个包含 2 个 Activity 的应用程序:-Activity A(主要 Activity )显示汽车列表- 如果您单击项目列表, Activity B 将开始显示汽车的详细信息。

在 Activity B 中,您可以下载与该汽车相关的信息,负责下载的服务 C 将启动,并在通知栏中添加一条通知。如果您点击通知,您应该会看到 Activity B 显示与该特定汽车相关的详细信息。

我的问题如下: Activity B 获得了这个额外的 Intent :carID所以在 onCreate 中它会读取这个额外的内容并向数据库询问该特定汽车的详细信息。当我从 Activity A 调用 Activity B 时,一切正常。但是当我从通知栏调用 Activity B 时,它没有。它总是获取有关我选择的第一辆车的详细信息。例如,我下载法拉利的详细信息,然后下载兰博基尼的详细信息....

在我的通知中,我会看到 2 个通知,但它们都打开了显示法拉利详细信息的 Activity B。

这就是我在服务 C 中创建通知的方式:

int icon = icona;  
CharSequence tickerText = message;
long when = System.currentTimeMillis();
Context context = getApplicationContext();
CharSequence contentTitle = message;
CharSequence contentText = appName;
Intent notificationIntent;
notificationIntent = new Intent(this, ActivityB.class);
notificationIntent.putExtra("carId", carId);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
mNotificationManager.notify(NOT_ID, notification);

这就是我在 Activity B 中接收 Intent 的方式:

Intent myIntent = getIntent(); 
appId = myIntent.getIntExtra("carId", 0);

一开始我没有从通知中收到任何 Intent ......然后我添加了 PendingIntent.FLAG_UPDATE_CURRENT,如您在上面看到的那样,我明白了,但它始终是第一个。我已经验证,并且我在每个 Intent 中添加了正确的 carId,但我得到了另一个……并且每次打开通知时都会出现此日志消息:

从非 Activity 上下文调用的 startActivity;强制 Intent.FLAG_ACTIVITY_NEW_TASK 用于:Intent { cmp=market.finestraprincipale/.ApplicationActivity bnds=[0,101][320,165](有附加功能)}

谁能帮帮我....

最佳答案

(原答案已修改,查看编辑历史)

我实际上不确定您系统的哪个部分出现故障,所以我将我的测试代码发布在这里,我测试过它可以正常工作。首先是 MyService,然后是 TestActivity,它在 DetailsActivity 中显示汽车详细信息:

汽车服务.java

public class CarService extends IntentService
{
public CarService()
{
super("CarService");
}

protected void onHandleIntent(Intent intent)
{
Bundle extras = intent.getExtras();
if (extras == null)
{
Log.e("CarService", "Service onHandleIntent null extras");
return;
}

int carId = extras.getInt("carId");
String carName = extras.getString("name");
Log.i("CarService", "Service onHandleIntent car = " + carName + " with ID = " + Integer.toString(carId));

Intent notificationIntent;
notificationIntent = new Intent(this, DetailsActivity.class);
notificationIntent.putExtra("carId", carId);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

PendingIntent pending = PendingIntent.getActivity(this, carId, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);

Notification notif = new Notification(R.drawable.icon, carName, System.currentTimeMillis());
notif.flags |= Notification.FLAG_AUTO_CANCEL;
notif.setLatestEventInfo(getApplicationContext(), carName, "Car Details", pending);

NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(carId, notif);
}
}


TestActivity.java(您的主要 Activity )

public class TestActivity extends Activity implements OnClickListener
{
@Override public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.test);

Button btn = (Button) findViewById(R.id.launch);
btn.setOnClickListener(this);
}

@Override public void onClick(View v)
{
startActivity(new Intent(this, DetailsActivity.class));
}
}


test.xml(TestActivity.java 的布局)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android" a:id="@+id/layout_root" a:orientation="vertical" a:layout_width="fill_parent" a:layout_height="fill_parent">
<TextView a:id="@+id/test_value" a:text="Main..." a:layout_width="wrap_content" a:layout_height="wrap_content"/>
<Button a:id="@+id/launch" a:text="Details" a:layout_width="100dp" a:layout_height="wrap_content"/>
</LinearLayout>


DetailsActivity.java(此处列出汽车详细信息 + 启动 CarService + 返回此处的通知)

public class DetailsActivity extends Activity implements OnClickListener
{
private String[] cars = new String[]{"Ferrari", "Lamborghini", "Lada", "Nissan", "Opel", "Bugatti"};
private int id = 0;


@Override public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.details);

Button btn = (Button) findViewById(R.id.doit);
btn.setOnClickListener(this);

Bundle extras = getIntent().getExtras();
if (extras != null)
{
final int id = extras.getInt("carId");
Log.i("DetailsActivity", "Car ID: " + id);
TextView tv = (TextView) findViewById(R.id.test_value);
tv.setText("Car ID = " + Integer.toString(id) + ", which is " + cars[id%6]); // id%6 prevents a crash with the string array when clicking test button over 6 times
}
}

@Override public void onClick(View v)
{
Intent intent = new Intent(this, CarService.class);
intent.putExtra("carId", id);
intent.putExtra("name", cars[id%6]); // id%6 prevents a crash with the string array when clicking test button over 6 times
startService(intent);
++id;
}
}


details.xml(TestActivity.java 的布局)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android" a:orientation="vertical" a:layout_width="fill_parent" a:layout_height="fill_parent">
<TextView a:id="@+id/test_value" a:text="No details yet: click the button." a:layout_width="wrap_content" a:layout_height="wrap_content"/>
<Button a:id="@+id/doit" a:text="Test" a:layout_width="100dp" a:layout_height="wrap_content"/>
</LinearLayout>

我希望一切正常,因为我做了一些即时的小改动。

关于Android: Intent 通过通知传递给 Activity ……我没有在 Intent 中得到正确的额外信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8217064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com