我想检查指定的主题是否为Theme.AppCompat
的父级。
例如:
<style name="AppTheme" parent="Theme.AppCompat" />
现在功能:
public boolean checkTheme(int theme, int parent)
{
// TODO: Implement method for check if theme is parent of another theme
// now I don't know how to do this
return false;
}
checkTheme(R.style.AppTheme, R.style.Theme_AppCompat); // in that case should return true
我可以这样做吗?
如果是,该怎么做?