Android动态切换主题

软件换肤从功能上可以划分三种:

1) 软件内置多个皮肤,不可由用户增加或修改;

最低的自由度,软件实现相对于后两种最容易。

2) 官方提供皮肤供下载,用户可以使用下载的皮肤;

用户可选择下载自己喜欢的皮肤,有些玩家会破解皮肤的定制方法,自己做皮肤使用,或者传到网上给大家用。

参考:http://blog.csdn.net/zhyooo123/article/details/6697186

3) 官方提供皮肤制作工具或方法,用户可自制皮肤。



关于主题和样式:

就像style一样,主题依然在

<--白色主题-->

注意到这里每个主题中的item名字是相同的,且在布局文件main.xml中
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="? pageBackground">
main.xml中引用白色主题还是蓝色主题的pageBackground,交由代码处理。动态切换主题。

代码实现动态切换:
创建一个util类,设置一个全局变量保存主题信息。
那么就必须调用actvity.finish()。然后再重新加载setTheme()

下面贴出主要的代码:
package irdc.ex03_21; 


import android.app.Activity; 
import android.os.Bundle; 
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;


public class EX03_21 extends Activity implements OnClickListener{ 
  /** Called when the activity is first created. */ 
  Button button = null;
  @Override 
  public void onCreate(Bundle savedInstanceState) {
    
    Utils.onActivityCreateSetTheme(this);
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    
    findViewById(R.id.button1).setOnClickListener(this);
    findViewById(R.id.button2).setOnClickListener(this);
    findViewById(R.id.button3).setOnClickListener(this);
    
  }
  @Override
  public void onClick(View v)
  {
    System.out.println("单击按钮");
    // TODO Auto-generated method stub
    switch (v.getId())
    {
    case R.id.button1:
      System.out.println("主题1");
      Utils.changeToTheme(this, 1);
      break;
    case R.id.button2:
      System.out.println("主题2");
      Utils.changeToTheme(this, 2);
      break;
    case R.id.button3:
      System.out.println("主题3");
      Utils.changeToTheme(this, 3);
      break;
    }
    
  }
}

package irdc.ex03_21;

import android.app.Activity;
import android.content.Intent;

public class Utils
{
	private static int sTheme;

	public final static int THEME_DEFAULT = 0;
	public final static int THEME_WHITE = 1;
	public final static int THEME_BLUE = 2;

	/**
	 * Set the theme of the Activity, and restart it by creating a new Activity
	 * of the same type.
	 */
	public static void changeToTheme(Activity activity, int theme)
	{
		sTheme = theme;
		activity.finish();

		activity.startActivity(new Intent(activity, activity.getClass()));
	}

	/** Set the theme of the activity, according to the configuration. */
	public static void onActivityCreateSetTheme(Activity activity)
	{
		switch (sTheme)
		{
		default:
		case 1:
		  activity.setTheme(R.style.Theme_Translucent);
			break;
		case 2:
			activity.setTheme(R.style.Theme_Translucent2);
			break;
		case 3:
			activity.setTheme(R.style.Theme_Transparent);
			break;
		}
	}
}



  

  

 
   

你可能感兴趣的:(Android动态切换主题)