Time of Update: 2016-01-26
標籤:KEYCODE_UNKNOWN=0;KEYCODE_SOFT_LEFT=1;KEYCODE_SOFT_RIGHT=2;KEYCODE_HOME=3;KEYCODE_BACK=4;KEYCODE_CALL=5;KEYCODE_ENDCALL=6;KEYCODE_0=7;KEYCODE_1=8;KEYCODE_2=9;KEYCODE_3=10;KEYCODE_4=11;KEYCODE_5=12;KEYCODE_6=13;KEYCODE_7=14;KEYCODE_8=15;KEYCODE_9=1
Time of Update: 2016-01-26
標籤:1,關於text和drawableTop之類的間距 1 android:drawablePadding="10dp" 2,用於RecyclerView的adapter重新整理資料,只有把新的資料傳到adapter裡然後notifyDataSetChanged()就可以了,如果資料很多,當然也有針對單條的資料更改1 public void refresh(List<Variety> list) {2 mVarietyList = list;3
Time of Update: 2016-01-26
標籤: 最近在研究用instanllshield來製作安裝包,並進行資料的建立,掌握到installshield中的LaunchAppAndWait 函數該函數是在啟動並執行時候,運行其他程式,並能傳遞參數以及是否靜默啟動並執行效果。例如: szScriptPath =SUPPORTDIR+"\\CREATEORACLEUSER.SQL"; LongPathToQuote(szScriptPath, TRUE);
Time of Update: 2016-01-26
標籤:一說到動態遞增設定TextView值,非常多人應該立即就想到起個線程,讓後線上程中睡眠指定時間,使用handler發送訊息更新TextView值!這樣是實現了動態遞增設定TextView值可是效率不咋滴吧,須要的話能夠自己去試試,如1到100,10s內顯示完,會感覺到有點卡的。這裡有個更好的方法,使用ValueAnimator進行設定,並且不須要自己去計算每次疊加後須要間隔的時間,以下是代碼:public static void
Time of Update: 2016-01-26
標籤:public final boolean isAdded()如果該Fragment對象被添加到了它的Activity中,那麼它返回true,否則返回false。public final boolean isDetached()如果該Fragment已經明確的從UI中分離,那麼它返回true。也就是說,在該Fragment對象上使用FragmentTransaction.detach(Fragment)方法。該方法在API Level 13中被引入。public final boolean
Time of Update: 2016-01-26
標籤:原文地址Butter Knife 簡介Butter Knife - Field and method binding for Android views。助你簡化程式碼,方便閱讀。使用方法開發 andriod app 的時候,一定有寫過類似的 code: class ExampleActivity extends Activity { TextView title; TextView subtitle; TextView footer;
Time of Update: 2016-01-26
標籤:安卓錯誤記錄檔分析1. java.lang.nullpointerexception這個異常大家肯定都經常遇到,異常的解釋是"程式遇上了null 指標",簡單地說就是調用了未經初始化的對象或者是不存在的對象,這個錯誤經常出現在建立圖片,調用數組這些操作中,比片未經初始化,或者圖片建立時的路徑錯誤等等。對數組操作中出現null
Time of Update: 2016-01-26
標籤:運行時許可權介紹Android
Time of Update: 2016-01-26
標籤:錯誤:The specified child already has a parent. You must call removeView()。解答:這個錯誤非常直白,就是你viewGroup.addView(childView); 中childView已經有父View了。錯誤原因非常多,我主要講下 mLayoutInflater.inflate(id, rootView,
Time of Update: 2016-01-26
標籤: NSString *dataStr = @"1453709220"; double lastactivityInterval = [model.addtime doubleValue]; NSDateFormatter* formatter = [[NSDateFormatter alloc] init]; formatter.timeZone =
Time of Update: 2016-01-26
標籤://在-(void)viewWillAppear:(BOOL)animated方法中添加返回按鈕 //返回按鈕 UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeCustom]; leftButton.frame=CGRectMake(0, 0, 60, 25); [leftButton
Time of Update: 2016-01-26
標籤:寫Android測試案例有三要素,一是我們用的“安卓模擬器device”(用來顯示UI),二是“uiautomatorviewer.bat”(用來定位UI上的元素),三是“Robotium”中提供的類(用來與UI元素進行互動)。在寫好Android的測試案例後,可通過Android JUnit Test批量運行測試代碼。一共分四步——第一步:寫一個suite類(suite中包
Time of Update: 2016-01-26
標籤: AlertDialog.Builder builder = new AlertDialog.Builder(_context); builder.setTitle("溫馨提示").setMessage("您的賬戶被鎖定,請聯絡閉門!") .setPositiveButton("確定", new DialogInterface.OnClickListener() {
Time of Update: 2016-01-26
標籤:為什麼你的 App 沒人用?請按這8條逐一對照Kamo Asatryan 可能是這個世界上關注創新生態系統最多的一些人之一,他觀察過數百個移動端 App,深入思考過它們的運行機制,並為它們的快速增長提供過切實有效建議。目前,他是 Prime 公司的 CEO,這家新興公司專門負責改善移動端 App 的使用體驗。(這位就是 Kamo Asatryan )因此,如果你正負責開發一款移動端的 App,請仔細閱讀以下內容。對於高速增長中的移動端 App 來說,他們應該注意以下幾點:1、
Time of Update: 2016-01-26
標籤:項目中用到彈出Acitivity來獲得使用者輸入 所以用到 onActivityResult()方法接受使用者輸入奇怪問題 startActivityForResult() 後直接調用 onActivityResult() 開發人員都知道,可以通過使用 startActivityForResult() 和 onActivityResult() 方法來傳遞或接收參數。然而在項目中,還沒等到被調用的 Activity 返回,onActivityResult(
Time of Update: 2016-01-26
標籤:Android中常常使用shape來定義控制項的一些顯示內容,今天看了一些shape的使用,對shape有了大體的瞭解,稍作總結:先看下面的代碼: <shape> <!-- 實心
Time of Update: 2016-01-26
標籤://安裝apk檔案 private void installAPK(File file) { Intent intent = newIntent(Intent.ACTION_VIEW); Uri data =Uri.fromFile(file); String type
Time of Update: 2016-01-26
標籤:Xcode7 beta 網路請求報錯:The resource could not be loaded because the App Transport Xcode7 beta 網路請求報錯:The resource could not be loaded because the App Transport Security policy requires the use of a secure connection. 轉載自http://blog.csdn.net/
Time of Update: 2016-01-26
標籤:好訊息,Android 開發技術周報開通了郵件訂閱,趕快來訂閱吧,訂閱請戳我戳我戳我,還有還有現在也可以推薦資源給Android開發技術周報了,推薦資源請戳我戳我戳我新聞在 Google 看來,市集都將消亡,而搜尋永存搜尋才是王道,讓使用者在 Google 搜尋結果裡直接安裝 App教程Android Scroller完全解析,關於Scroller你所需知道的一切郭神新作,詳解 ScrollerAndroid應用安全開發之源碼安全實用 APK
Time of Update: 2016-01-26
標籤:快速探索使用快速探索,即使你的app不能開啟文檔,使用者也可以通過你的app預覽一個文檔。比如說,你也許會允許使用者預覽他們從網頁下載或者從其他資源擷取的文檔。查看Document Interaction Programming Topics for