English 中文(简体)
Android - 通过 ExpretIntent 发送额外文件
原标题:Android - sending extras via PendingIntent

点击后, 我将部件项目同步化, 我想启动细节活动( 它将发送 ID 给该活动) 。

Cursor currentCursor = dbHelper.getWidgetCursor();
for(int k=0; k < currentCursor.getCount(); k++){
    currentCursor.moveToPosition(k);

    RemoteViews rw = new RemoteViews(context.getPackageName(), R.layout.w_calendar_item);

    Intent intentRow = new Intent(context, DetailsActivity.class);
    Log.v("a", "index: "+currentCursor.getInt(currentCursor.getColumnIndex(SqlHelper.COLUMN_ID)));
    intentRow.putExtra("index", currentCursor.getInt(currentCursor.getColumnIndex(SqlHelper.COLUMN_ID)));
    PendingIntent pendingIntentRow = PendingIntent.getActivity(context, 1, intentRow, PendingIntent.FLAG_CANCEL_CURRENT);
    rw.setOnClickPendingIntent(R.id.w_li, pendingIntentRow);

    views.addView(R.id.w_list, rw);
}

我的问题是"细节活动"总是收到103号指数(这是清单中的最后一项),

问题回答

这是因为您设置了 < a href=> http:// developmenter.android.com/ reference/android/app/PendingIntent.html#FLAG_CanceL_CURRENT" rel=“nofollow” >Pendintent.FLAG_CanceL_CURRENT 的旗帜。 对于每行Android将取消先前的意向, 所以最后的意向自然会存活下来。 也许只要去除那面旗就能成功。 我对远程观察没有经验, 所以不确定如果这没有帮助, 最好做什么 。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签