android學習雜記 9

2021-07-30 13:26:20 字數 1809 閱讀 3227

一些小用法

監聽 edittext 輸入字數的限制

medittitle.addtextchangedlistener(newtextwatcher() 

@override

public voidontextchanged(charsequence s,intstart,intbefore,intcount)

@override

public voidaftertextchanged(editable s)

}});

/**

* 獲取當前的年月日

*@return

*/public staticstring getsystemdate()

/**

* 判斷是否到了12點

*@return

*/public static booleanjugetwelvedate()

/*** 把時間戳轉換成date型別,並判斷是否與今天是同一天

*/public static booleanmillstodate(longmills)

}catch(parseexception e)

return false;

}/**

* 判斷是否與今天是同一天

*@param

date

*@return

*/@suppresslint("******dateformat")

public static booleanisthesamedate(date date)

calendar nowcalendar = calendar.getinstance();

calendar datecalendar = calendar.getinstance();

datecalendar.settime(date);

if(nowcalendar.get(calendar.year) == datecalendar.get(calendar.year)

&& nowcalendar.get(calendar.month) == datecalendar.get(calendar.month)

&& nowcalendar.get(calendar.date) == datecalendar.get(calendar.date))

return false;

}

android學習雜記 12

讓狀態列佔位消失,在想要實現這個效果的activity中呼叫這方法就行。targetapi 19 private voidsettranslucentstatus booleanon else win.setattributes winparams 然後因為狀態列佔位消失了 下面的布局會往上移,所以...

Android學習雜記(二)布局

android id id my button 指r檔案,可以不要 是指解析器 relativelayout是linearlayout的子類 viewgroup.layoutparam 確定了子檢視的高和寬 layout height,layout width android layout heig...

android之學習雜記(四)

遊戲中對於金錢的設定,因為沒有經驗,只能使用相對值進行了簡單的測試,同時對人物顯示區域進行了一些簡單的規劃,需要顯示些什麼資訊。對如何扣錢以及錢的基準,城市的級別公升級等都需要定義,因為這些都涉及到錢是否會通脹,導致最後所有人錢無限多,花不完,導致城市公升級很容易,最終就在那裡轉圈了。金錢系統先經過...