今天用到了这个东西 搜索到一个网站
http://www.urbanfonts.com/fonts/Xtrusion.htm
里面是字体下载的
关于字体的使用很简单
在asset里面建一个文件夹Fonts
然后直接
/* Setting up fonts */
Typeface fontFace = Typeface.createFromAsset(getAssets(), "fonts/xtrusion.ttf")
Typeface fontFace2 = Typeface.createFromAsset(getAssets(), "fonts/other.ttf");
TextView someText = (TextView)findViewById(R.id.TextView01);
TextView someOtherText = (TextView)findViewById(R.id.TextView02);
someText.setTypeface(fontFace);
someText.setTextSize(40.f);someText.setText("Hello Android");
someOtherText.setTypeface(fontFace2);
someOtherText.setTextSize(55.f);
someOtherText.setText("Some other text");
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
当然还有xml实现那就比较简单了 直接用主题就好了
mEdit.setTransformationMethod(PasswordTransformationMethod.getInstance());
G3入手四个月了,摸得差不多了,记录下把玩过程。
G3连接电脑后,会出现“可移动硬盘”标记。但是你双击,死活都打不开。提示“请插入驱动器”。
我搞了两个小时才找到原因。打开G3,手放到最上面的提示栏,往下拖,会出现“USB已连接”的字样,点击下,会问你是否装载存储卡,点击装载即可。。。。