android.support.v7.app.AppCompatActivity.onApplyThemeResource()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(85)

本文整理了Java中android.support.v7.app.AppCompatActivity.onApplyThemeResource()方法的一些代码示例,展示了AppCompatActivity.onApplyThemeResource()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AppCompatActivity.onApplyThemeResource()方法的具体详情如下:
包路径:android.support.v7.app.AppCompatActivity
类名称:AppCompatActivity
方法名:onApplyThemeResource

AppCompatActivity.onApplyThemeResource介绍

暂无

代码示例

代码示例来源:origin: shazam/android-aspects

@Override
protected void onApplyThemeResource(@NonNull Resources.Theme theme, int resid, boolean first) {
  super.onApplyThemeResource(theme, resid, first);
  dispatcher.dispatchOnApplyThemeResource(this, theme, resid, first);
}

代码示例来源:origin: nekocode/JarFilterPlugin

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
  // !!! Make some modifications
  Toast.makeText(getApplicationContext(), "Hello World!", Toast.LENGTH_SHORT).show();
  final AppCompatDelegate delegate = getDelegate();
  delegate.installViewFactory();
  delegate.onCreate(savedInstanceState);
  if (delegate.applyDayNight() && mThemeId != 0) {
    // If DayNight has been applied, we need to re-apply the theme for
    // the changes to take effect. On API 23+, we should bypass
    // setTheme(), which will no-op if the theme ID is identical to the
    // current theme ID.
    if (Build.VERSION.SDK_INT >= 23) {
      onApplyThemeResource(getTheme(), mThemeId, false);
    } else {
      setTheme(mThemeId);
    }
  }
  super.onCreate(savedInstanceState);
}

相关文章

微信公众号

最新文章

更多

AppCompatActivity类方法