このようなことは可能ですか?:
not = AndroidCheck.isJellyBeanOrLater() ? notB.build()
: notB.getNotification();
.build()
これは JellyBean(API16) 以降のメソッドであり、.getNotification() は JellyBean の初期メソッドであるため、エラーが発生します。
API MinVersion=10 Version=17
目的は次のとおりです。AndroidバージョンはJellyBeanよりも早いため.getNotification()
、非推奨のメソッドを使用しますが、そうでない場合は実際の.build()
メソッドを使用します。
私を助けてみてくださいませんか?=)
ありがとう