1

안녕 내 응용 프로그램에서 내 사용자 정의 알림을 가지고, 안드로이드 2.2 2.3 4.0에서 완벽하게 작동하지만 4.1.1에서하지 젤리 내가 시도하지만 천막 내 사용자 정의 통지 heres에서 일하고 마키 내 코드 .XML :안드로이드에서 연회실 문제 4.1.1 사용자 정의 알림

<TextView 
        android:id="@+id/notification_title" 
     style="@style/NotificationTitle" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:ellipsize="marquee" 
      android:fadingEdge="horizontal" 
      android:focusable="true" 
      android:focusableInTouchMode="true" 
      android:gravity="bottom" 
      android:marqueeRepeatLimit="marquee_forever" 
      android:scrollHorizontally="false" 
      android:singleLine="true" 
      android:textSize="20sp" 
      android:textStyle="bold" > 

      <requestFocus /> 
     </TextView> 

     <TextView 
        android:id="@+id/notification_text" 
     style="@style/NotificationText" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/notification_title" 
      android:layout_marginTop="3dp" 
      android:textSize="15sp" > 
     </TextView> 

내 알림 코드 :

  int NOTIFICATION_ID = 1; 
      String ns = Context.NOTIFICATION_SERVICE; 
      NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns); 
      int icon = R.drawable.notificacion; 
      long when = System.currentTimeMillis(); 
      CharSequence tickerText = "Reproduciendo..."; 

      Notification notification = new Notification(icon, tickerText, 
        when); 


      RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification); 
      contentView.setTextViewText(R.id.notification_title, txtMetaTitle.getText().toString()); 
      contentView.setTextViewText(R.id.notification_text, txtMetaUrl.getText().toString()); 
      notification.contentView = contentView; 
      Intent notificationIntent = new Intent(AACPlayerActivity.this, Principal.class); 
      PendingIntent contentIntent = PendingIntent.getActivity(AACPlayerActivity.this, 0, notificationIntent, 0); 
      notification.contentIntent = contentIntent; 
      notification.flags |= Notification.FLAG_ONGOING_EVENT; 
      mNotificationManager.notify(NOTIFICATION_ID, notification); 
     } 

내 응용 프로그램이 잘 작동하지만 천막 나던 시작 이유는 4.1.1에서 잘 모릅니다? 이 문제를 해결하려면 어떻게해야합니까?

대단히 감사합니다.

답변

1

그냥 알림 : Notification에 건물 알림은 Builder 하위 클래스를 사용하는 것이 좋습니다. 또한 플랫폼간에 호환성을 얻으려면 android.support.v4.app.NotificationCompat을 고려해야합니다. 동일한 RemoteViews을 사용할 수 있어야합니다. 새로운 방법으로 전환하고 어떤 일이 일어나는지보십시오.

+0

몇 가지 예를 들려 줄 수 있습니까? 나는 그 lib를 가져올 필요가 있니? – alexistkd

+0

내 실제 코드에서 뭔가를 변경해야한다는 의미입니까? – alexistkd