首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android惯用代码记录

2012-10-19 
Android常用代码记录1.获得 RadioButtonnew AlertDialog.Builder(EX03_12.this).setTitle(R.string.app_ab

Android常用代码记录

1.获得 RadioButton值

       new AlertDialog.Builder(EX03_12.this)          .setTitle(R.string.app_about)          .setMessage(R.string.app_about_msg)          .setPositiveButton(R.string.str_ok,              newDialogInterface.OnClickListener()              {                publicvoid onClick(DialogInterface dialoginterface, int i)                {                }              }).show();

4.改变文本框的字体      mText.setTypeface(Typeface.createFromAsset(getAssets(),          "fonts/HandmadeTypewriter.ttf"));注: 在assets目录下建立fonts文件夹并放入HandmadeTypewriter.ttf字体文件
待续

来自东子的博客

热点排行