(待完善)Android应用换肤 更换主题

主要有以下的步骤:

  • 在 attrs.xml资源文件中定义自己的属性:


    

  • 在styles.xml资源文件中定义几种主题风格:

    

    

  • 在Activity中的onCreate()函数中的setContentView()之前动态设置主题,一定要在setContentView()函数之前设置setTheme()啊:
@Override
    protected void onCreate(Bundle savedInstanceState) {
        mContext = this;
        super.onCreate(savedInstanceState);
        setTheme(getIntent().getIntExtra("theme_res", R.style.theme1));
        setContentView(R.layout.activity_main);
}

//R.layout.activity_main 布局文件中需要定制主题的组件进行如下设置(android:background:):
      
  • 在需要更换主题的时候,进行重新启动该Acticvity,并且把先前的Activity销毁掉:
    @OnClick(R.id.changeTheme1)
    public void onChangeTheme1Click() {
        changeTheme(R.style.theme1);
    }

    @OnClick(R.id.changeTheme2)
    public void onChangeTheme2Click() {
        changeTheme(R.style.theme2);
    }

    //注意要设置Intent.FLAG_ACTIVITY_CLEAR_TOP 
    //Intent.FLAG_ACTIVITY_NEW_TASK  这两个标志位
    private void changeTheme(int resId) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.putExtra("theme_res", resId);
        startActivity(intent);
    }
  • 关于Style 和Theme 文章参考:
    • https://www.cnblogs.com/playing/archive/2011
      /04/01/2002469.html
    • https://www.cnblogs.com/likeandroid/p/4501758.html

你可能感兴趣的:((待完善)Android应用换肤 更换主题)