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에서 잘 모릅니다? 이 문제를 해결하려면 어떻게해야합니까?
대단히 감사합니다.
몇 가지 예를 들려 줄 수 있습니까? 나는 그 lib를 가져올 필요가 있니? – alexistkd
내 실제 코드에서 뭔가를 변경해야한다는 의미입니까? – alexistkd