我實現一個例子的PendingIntent Android Studio中..但NoticationClass似乎有點問題符號..無法解析setLatestEventInfo
public void onClick(View v) {
NotificationManager notif=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify=new Notification(R.drawable.noti,tittle,System.currentTimeMillis());
notify.setLatestEventInfo(getApplicationContext(),subject,body,pending);
}
這是我的搖籃
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "testproject.example.com.testproject"
minSdkVersion 22
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.google.android.gms:play-services:6.5.87'
}
我有一個建議使用NotificationBuilder,但這是替代NotificationCompat類,它不在我的代碼中。
我看到這個系統的多個解決方案,但沒能實現它的任何
。
setLatestEventInfo的其他選擇是什麼。
任何建議將是有益的
什麼是你的'CompileSdkVersion'? – Ironman
我更新了我的Gradle,CompileSdkVersion是23 –
等待我發佈了答案。 – Ironman