Это не было бы проблемой, если бы было четко задокументировано, какова альтернатива. Например, приложение AOSP Calendar по-прежнему использует android.R.styleable
Код: Выделить всё
// Get the dim amount from the theme
TypedArray a = obtainStyledAttributes(com.android.internal.R.styleable.Theme);
lp.dimAmount = a.getFloat(android.R.styleable.Theme_backgroundDimAmount, 0.5f);
a.recycle();
Код: Выделить всё
backgroundDimAmountЧто мне нужно добавить в getStyledAttributes(int []), чтобы он работал с SDK?
Подробнее здесь: https://stackoverflow.com/questions/212 ... of-android
Мобильная версия