如何检查指定主题的父级?

时间:2015-07-15 21:33:24

标签: android

我想检查指定的主题是否为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

我可以这样做吗?

如果是,该怎么做?

0 个答案:

没有答案