Android Tips

时间:2023-12-06 15:51:20

(1).设置图片缓存大小,一般可以设置为内存的1/8

int memoryCache = (int) (Runtime.getRuntime().maxMemory() / 8);

(2).

Android Tips

(3).

App的启动页可使用Activity的theme属性来设置,这样主界面未加载完成时就显示theme,加载完成后在Activity的onCreate函数中再设置setTheme(null)来销毁这个启动页,加载正常界面即可。比单独写一个Activity来展示启动页开销小,效率高。

参考:

http://blog.chengyunfeng.com/?p=741

http://www.codeceo.com/article/android-app-theme-style.html

(4).在设置EditText的属性时候,会设置inputType=“password”,在中文时没有问题,但是在英文中会遇到hint中的英文由半角变成圆角,

非常不美观,所以可以在代码中设置:editText.setTypeface(Typeface.SANS_SERIF),注意在xml中设置无效。

参考:http://www.wangchenlong.org/2016/02/24/tips/1603/242-android-tips-5/