1. <?xml version="1.0" encoding="utf-8"?>
2. android:interpolator="@android:anim/decelerate_interpolator">
interpolator其他的幾個子類,也都是按照特定的演算法,實現了對變化率。還可以定義自己的 interpolator 子類,實現拋物線、自由落體等物理效果。
1.當你要旋轉乙個animition時 你會發現如果你只用rotate 它是不平滑的 旋轉360度之後它會滯留一會 然後再轉 給人感覺是暫停那麼一會 怎麼消除呢?這是因為如果只用rotate
它預設使用了android:anim/accelerate_interpolator,所以你要寫乙個自己的interpolator ,這個interpolator就是linearinterpolator。
所以你必須先建乙個res/anim/linear_interpolator.xml:
<?xml version="1.0" encoding="utf-8"?>
然後在你的animition中加入
android:iterpolator="@anim/linear_interpolator"這句話就可以了
如: <?xml version="1.0" encoding="utf-8"?>
預設的是accelerate_interpolator,所以你必須在上面的xml中加入
android:iterpolator="@anim/linear_interpolator"
然後就是平滑的旋轉了。
2.當採用過濾的方法:
final textwatcher textchecker = new textwatcher()
public void beforetextchanged(charsequence s, int start, int count, int after) {}
public void ontextchanged(charsequence s, int start, int before, int count)
}; private void filterdata(string textinput);
int to = new int;
setlistadapter(new myadapter(this, r.layout.list_row, mcursor, from, to ));}
3. 直接發起乙個相關的聯絡人:
intent intent = new intent();intent.setaction(contacts.intents.show_or_create_contact);
intent dialintent = new intent( "android.intent.action.dial",uri.parse("tel:666444666")); startactivity(dialintent);
4.字串空格以及字串引數的問題
you found all pairs ! on\
\ flips !
想在字串前面和後面有空格一定要注意轉義
string message_all_pairs_found = getstring(r.string.toast_memory_gamewon_part1)+"total_flips"+getstring(r.string.toast_memory_gamewon_part2);
那麼也可以如下實現:
you found all pairs ! on %d flips !
string message_all_pairs_found = string.format(getstring(r.string.toast_memory_gamewon), total_flips);
5.onkeydown不起作用 主要因為 可能沒有設定setfocusableintouchmode(true)
最好也加上 setfocusable(true)
6.只知道包名的不知道 r.id的解決辦法:
getresources().getidentifier()
當然你最好吧這個檔案放在res/raw/mydatafile 然後讀取
8. 用流載入
bufferedinputstream buf = new bufferedinputstream(mcontext.openfileinput(value));bitmap bitmap = bitmapfactory.decodestream(buf);
9.自定義乙個dialog
class mydialog extends alertdialog
} 10. 郵件傳送
intent sendintent = new intent(intent.action_send);
sendintent.setflags(intent.flag_activity_new_task);
sendintent.settype("jpeg/image");
sendintent.putextra(intent.extra_email, "[email protected]");
sendintent.putextra(intent.extra_subject, "aadjfk");
sendintent.putextra(intent.extra_stream, uri.parse("file://"+ sphotofilename));
sendintent.putextra(intent.extra_text, semailbody);
startactivity(intent.createchooser(sendintent, "email:"));
一定要注意"file://"是兩個斜槓
tostart = new intent(intent.action_view);
tostart.setdataandtype(uri.parse(movieurl), "video/*");
startactivity(tostart);
在大部分手機上是
tostart.setclassname("com.android.camera","com.android.camera.movieview");
而在htc上
tostart.setclassname("com.htc.album","com.htc.album.viewvideo");
因此你需要判斷
private boolean iscallable(intent intent)
final intent intent = new intent("com.android.camera.action.crop");
intent.setclassname("com.android.camera", "com.android.camera.cropimage");
if (iscallable(intent))
else
動畫 什麼是雜湊表?
雜湊表雜湊表 hash table,也叫雜湊表 是根據鍵 key 而直接訪問在記憶體儲存位置的資料結構。也就是說,它通過計算乙個關於鍵值的函式,將所需查詢的資料對映到表中乙個位置來訪問記錄,這加快了查詢速度。這個對映函式稱做雜湊函式,存放記錄的陣列稱做雜湊表。雜湊函式 雜湊函式,顧名思義,它是乙個函...
動畫 什麼是希爾排序?
上篇寫的直接插入排序演算法時間複雜度是o n 2 如果要令此排序演算法的時間複雜度要低於o n 2 必須是 遠距離的元素交換 使得這組元素能提高有序的程度,然後進行直接插入排序的時候可以減少交換的工作量。那通過什麼減少交換的工作量呢?希爾排序可以解決這個問題。希爾排序在做直接插入排序之前,希望可以對...
動畫 什麼是氣泡排序?
冒牌排序演算法時間複雜度最壞的情況是,最好的,說明氣泡排序是可以優化的,就看你有沒有去發現。比較相鄰的元素,判斷是否符合要求,如果不符合就交換位置來達到排序的目的。對每一對相鄰元素做相同的工作,從開始第一對到結尾的最後一對,一次遍歷之後,最後乙個元素是最大 小 的數。第二次遍歷重複以上操作,因為最後...