个人android笔记(四)

系统 1865 0
1、ProgressDialog的简单应用:
    ProgressDialog dialog = ProgressDialog.show(this, "hello", "are you sure???");		
		new Thread(){
			public void run() {
				try {
					Thread.sleep(5000);
				} catch (InterruptedException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
				dialog.dismiss();
			};
		}.start();
  

ps:Thread.sleep不能放在主线程,否则的话ProgressDialog将不会显示

2、AlertDialog的另一种应用:
个人android笔记(四)
代码实现:
    array = getResources().getStringArray(R.array.you_choice);
		new AlertDialog.Builder(this).setTitle("请选择").setItems(array, new DialogInterface.OnClickListener() {			
			@Override
			public void onClick(DialogInterface dialog, int which) {
				
			}
		}).create().show();
  

定义array:res/values/Strings.xml
    <?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello World!</string>
    <string name="app_name">Android_SDK_Sample</string>
    <array name="you_choice">
    	<item>牛肉</item>
    	<item>米饭</item>
    	<item>豆角</item>
    </array>
</resources>
  

3、丰富界面显示,Theme的使用
      setTheme(R.style.Theme_AlphaTheme);
		setContentView(R.layout.ch3_19);
  

Theme_AlphaTheme定义在res/values/style.xml中
    <?xml version="1.0" encoding="utf-8"?>
<resources>	
    <style name="mystyle">
    	<item name="android:textSize">18sp</item>
    	<item name="android:textColor">#EC9237</item>
    	<item name="android:fromAlpha">0.0</item>
    	<item name="android:toAlpha">0.0</item>
    </style>
    <style name="Theme" parent="android:Theme">
    </style>    
    <style name="Theme.AlphaTheme">
    	<item name="android:background">#aaff00ff</item>
    	<item name="android:windowNoTitle">true</item>
    	<item name="android:colorForeground">@drawable/blue</item>
    	<item name="android:colorBackground">@drawable/pink</item>
    </style>
</resources>
  


4、代码片段:
设置EditText中的文字是明文还是密文显示。
//明文
    et.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
  

//密文
    et.setTransformationMethod(PasswordTransformationMethod.getInstance());
  


5、代码片段:一般我们在国际化的时候,需要改变当前系统的语系。程序实现如下:
       Resources res = getResources();
		Configuration conf = res.getConfiguration();
		conf.locale = Locale.JAPAN;
		DisplayMetrics dm = new DisplayMetrics();
		res.updateConfiguration(conf, dm)
  
;

个人android笔记(四)


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论