創作

2015年6月15日 星期一

Android 資源優化紀錄

1.單例模式,可以減少記憶體使用量。(不用一直New)

2.Adapter 以ViewHolder去管控。

3.Bitmap 在移除之後,記得 bitmap.recycle();  (要注意時間點,recycle時間點錯誤,會出現 嘗試使用已移除的Bitmap 錯誤)


2015年6月4日 星期四

SQLite 語法紀錄


  1. 新增移除類:

    • 創建表單(沒有才創):
      • create table if not exists table_name ( column1 , column2 );
      • create table if not exists table_name column1 uniquecolumn2 char ); 
        • unique->唯一值,如果有相同,則不新增
    • 刪除表單:
      • drop table if exists table_name;
    • 新增欄位 (SQL不允許一次新增多個欄位,必須一個一個加):
      • alter table table_name add column column3 column_type

  2. 查詢類組:
    1. 表的所有內容:
      select * from table_name;
    2. 表內特定 column:
      select column_1,column_2 from albums;
    3. 表內特定column的名稱:(舉例,我要找這個表內 老師名稱內有 judy的所有資料)
      select * from table_name where teacher like 'judy%';