平时积累(一)

前端之家收集整理的这篇文章主要介绍了平时积累(一)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

(1)ListView分隔线设置:

(2)sqlite客户端:sqliteMan。

(3)布局文件模块化: <include>标签

(4)Ubuntu中用Umbrello工具绘制UML图。

(5)改变ListView组件的背景:

拖动ListView,这时背景会变成黑色,调用ListView的setCacheColorHint(0x00000000)方法,将背景色改成透明。

(6)ADFree-Detector:网络广告拦截器。

(7)获取Layout布局的两种方法

A. View view = LayoutInflater.from(context).inflate(R.layout.布局文件,null);

B. LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

View view = inflater.inflate(R.layout.布局文件,null);

(8)解决Ubutu中QQ崩溃问题:

A. sudo gedit /usr/bin/qq

B. export GDK_NATIVE_WINDOWS=true

(9)iptux工具:类似飞鸽,飞秋软件。

(10)Android四种存储方式:Preference,DataBase,File,NetWork。

原文链接:/sqlite/202734.html

猜你在找的Sqlite相关文章