我已经用远程视图定制了一个通知,视图包含布局和两个按钮,我想要的是当用户点击一个名为“contentLayout”的布局时,活动“Test”将被打开,当用户点击按钮,“remindTenMinButton”或“remindLaterButton”时,操作“Test2”将启动。现在的问题是活动“Test”启动正确,但对于活动“Test2”,当我单击通知栏中的按钮时,似乎什么都没有发生,但当我单击“back”时,当通知栏向后折叠时,我可以看到Test2已经启动,所以问题是当用户单击remoteview中的按钮时,如何使通知栏向后折叠?以下是我的代码:
主要活动:
package com.example.androidtest2;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TaskStackBuilder;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RemoteViews;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
MainActivity.this).setSmallIcon(R.drawable.ic_launcher);
String notifyTitle = "title....";
String notifyContent = "content......";
RemoteViews remoteViews = new RemoteViews(MainActivity.this
.getPackageName(), R.layout.notification_bar);
remoteViews.setTextViewText(R.id.title, notifyTitle);
remoteViews.setTextViewText(R.id.content, notifyContent);
Intent resultIntent = new Intent(MainActivity.this, Test.class);
TaskStackBuilder stackBuilder = TaskStackBuilder
.create(MainActivity.this);
stackBuilder.addParentStack(Test.class);
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent = stackBuilder
.getPendingIntent(0, PendingIntent.FLAG_CANCEL_CURRENT);
Intent notifyLaterIntent = new Intent(MainActivity.this,
NotificationProcesssingReceiver.class);
PendingIntent PendingNotifyLaterIntent = PendingIntent
.getBroadcast(MainActivity.this, 0, notifyLaterIntent,
PendingIntent.FLAG_CANCEL_CURRENT
| PendingIntent.FLAG_ONE_SHOT);
Intent notify10LaterIntent = new Intent(MainActivity.this,
NotificationProcesssingReceiver.class);
PendingIntent PendingNotify10LaterIntent = PendingIntent
.getBroadcast(MainActivity.this, 0,
notify10LaterIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.contentLayout,
resultPendingIntent);
remoteViews.setOnClickPendingIntent(R.id.remindLaterButton,
PendingNotifyLaterIntent);
remoteViews.setOnClickPendingIntent(R.id.remindTenMinButton,
PendingNotify10LaterIntent);
NotificationManager mNotificationManager = (NotificationManager) MainActivity.this
.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = mBuilder.build();
notification.defaults = Notification.DEFAULT_SOUND;
notification.audioStreamType = android.media.AudioManager.ADJUST_LOWER;
notification.icon = R.drawable.ic_launcher;
notification.tickerText = "ticker text...";
notification.bigContentView = remoteViews;
// mId allows you to update the notification later on.
mNotificationManager.notify(1, notification);
}
});
}
}
通知进程接收器:
package com.example.androidtest2;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class NotificationProcesssingReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent)
{
Intent test = new Intent(context, Test2.class);
test.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
//context.startActivity(toMainScreen);
context.startActivity(test);
}
}
测试:
public class Test extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
/* NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(1);*/
}
}
测试2:
public class Test2 extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test2);
}
}
主要活动。xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginLeft="56dp"
android:text="Button" />
</RelativeLayout>
通知栏。xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/contentLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/desk_command_oye" />
<LinearLayout
android:id="@+id/contentTextLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/imageView1"
android:orientation="vertical" >
<TextView android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Title...."/>
<TextView android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text content"/>
</LinearLayout>
</RelativeLayout>
<LinearLayout
android:id="@+id/buttonsLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/linearLayout1"
android:layout_toRightOf="@+id/linearLayout1" >
<Button android:id="@+id/remindTenMinButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button1"/>
<Button android:id="@+id/remindLaterButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button2"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
activity_test.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="${packageName}.${activityClass}" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
活动2。xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
AndroidManifest。xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidtest2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.androidtest2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.androidtest2.Test"
android:label="@string/title_activity_test" >
</activity>
<receiver android:name="com.example.androidtest2.NotificationProcesssingReceiver" >
</receiver>
<activity
android:name="com.example.androidtest2.Test2"
android:label="@string/title_activity_test2" >
</activity>
</application>
找到问题,请使用以下代码:
Intent it = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
context.sendBroadcast(it);
有关详细信息,请查看以下链接:
点击通知按钮后如何关闭状态栏? 我试过了,但有个例外: 我的代码: 在NotificationIntent类
问题内容: 我有这个小网站,我想用请求库填写表格。问题是当填写表单数据并单击按钮时,我无法到达下一个站点(输入不起作用)。 重要的是,我无法通过某种类型的点击漫游器来做到这一点。这需要完成,这样我才能在没有图形的情况下运行。 前三个条目的名称,消息,符号是文本区域,步骤是我认为的按钮。 当我通过chrome手动发送请求时,表单数据如下所示: 姓名:约翰·约翰 讯息:XXX 签名:XXX 第1步 b
我试图点击下面xpath提供的按钮。它显示以下错误: cmd中。
我想做的就是选择下拉列表。 下拉列表示例 代码: 我已经尝试了很多不同的Xpaths HTML代码 单击我查看HTML示例1 看看例1和例2中的名字 单击我为超文本标记语言实例2 您会注意到 HTML 代码已更改为 我认为这是我面临的问题的一部分。真是卡住了。我也尝试过使用ChroPath 提前谢谢你! 更新: 评论要求提供超文本标记语言代码的更多细节 更新2(解决方案) 我错在这里。我没有提供足
我想在记录器服务运行时显示通知。用户应该能够在通知中直接暂停或停止记录器。所以我在通知中添加了两个按钮,并实现了一个BroadcastReceiver来处理按钮点击。 它几乎像我想要的那样工作,但有一个问题我无法解决。当用户单击按钮时,我想显示活动。这是我的代码: 目前执行每个按钮的正确操作,但如果用户单击时应用程序不可见,则不显示该应用程序。如何实现这一点? 有必要在这里实现BroadcastR
我想使用按钮单击中的GCM将推送通知从一个设备发送到多个设备。我遵循了GCM的所有流程。我获得了设备的服务器密钥和注册ID,但没有使用GCM获得推送通知。我也在谷歌上搜索过,但没有找到正确的解决方案。 请建议我如何在多设备上发送推送通知。 MAYActivity.java