0

我创建了一个Android应用程序。我希望当它安装在设备中时它不会显示任何 GUI 部分。当我们从服务器广播消息时,在选择通知时我希望用户显示 GUI 部分。我们怎么能这样做Android呢?

Notification我在我开始新的函数中尝试了这个Intent

 setTheme(android.R.style.Theme);

这在我的Manifest.XML文件中

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.iween.gcmclient" android:versionCode="1" android:versionName="1.0">


    <uses-sdk 
        android:minSdkVersion="8" 
        android:targetSdkVersion="17"/>

    <!-- GCM connects to Google Services. -->
    <uses-permission android:name="android.permission.INTERNET" />

    <!-- GCM requires a Google account. -->
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />

    <!-- Keeps the processor from sleeping when a message is received. -->
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <permission 
        android:name="com.example.iween.gcmclient.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission 
        android:name="com.example.iween.gcmclient.permission.C2D_MESSAGE" />

    <!-- This app has permission to register and receive data message. -->
    <uses-permission
        android:name="com.google.android.c2dm.permission.RECEIVE" />

    <!-- Main activity. -->
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name="com.example.iween.gcmclient.DemoActivity"
            android:label="@string/app_name"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:launchMode="singleTop">
            <intent-filter>
                <action 
                    android:name="android.intent.action.MAIN" />
            <category 
                android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <receiver
            android:name="com.example.iween.gcmclient.GcmBroadcastReceiver"
            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>
                <!-- Receives the actual messages. -->
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <category android:name="com.google.android.gcm.demo.app" />
            </intent-filter>
        </receiver>
        <service android:name="com.example.iween.gcmclient.GcmIntentService" />
    </application>

</manifest>

通知功能

private void sendNotification(String recivedMessage) {
        mNotificationManager = (NotificationManager)
                this.getSystemService(Context.NOTIFICATION_SERVICE);

        PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                new Intent(this, DemoActivity.class), 0);
       NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(this)
        .setSmallIcon(R.drawable.ic_stat_gcm)
        .setContentTitle("Iween Notification")
        .setStyle(new NotificationCompat.BigTextStyle()
        .bigText(recivedMessage))
        .setContentText(recivedMessage);

        mBuilder.build().flags = Notification.FLAG_AUTO_CANCEL;
        Uri notificationSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        mBuilder.setSound(notificationSound);
        mBuilder.setAutoCancel(true);
        mBuilder.setContentIntent(contentIntent);
        mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }
4

1 回答 1

0

试试这个方法

创建一个公共静态 int 变量,该变量将在收到通知时更新

例如在您的接收器类中

public static int THEME = 0;
onReceive(){

  if(cond1){
       THEME = R.style.them1;
  }else if(cond2){
       THEME = R.style.them2;
  }

}




@Override
    protected void onCreate(Bundle savedInstanceState) {

              if(THEME!=0){
                 setTheme(THEME);
              }

        super.onCreate(savedInstanceState);
于 2013-09-04T08:24:58.040 回答