Time of Update: 2015-08-18
標籤:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html;
Time of Update: 2015-08-18
標籤: 昨天朋友問我,怎麼實現在豎屏的應用裡,顯示一個橫屏的應用,由於也沒做過就說不知道了,但是我覺得會有這樣的API ,因為我手機裡就安裝有這種類型的軟體今天早上起來,就想做一個Dome出來,慣例的是尋找資料,測試是否可以使用,但是尋找了都寫的不是很清楚,很容易造成沒法實現想要的效果,所以想重新寫過一個希望能幫到有這個需求的朋友。(這個沒什麼經驗,的是照著網上的資料拼湊起來,如果有錯誤,請見諒,有更好的辦法也可以告訴我) 實現的效果:
Time of Update: 2015-08-18
標籤: // ViewController.m// IOS動畫0817//// Created by 張豔鋒 on 15/8/17.// Copyright (c) 2015年 張豔鋒. All rights reserved.// #import "ViewController.h" @interface ViewController () @property (weak,
Time of Update: 2015-08-18
標籤:一種通過matrix矩陣縮放://使用Bitmap加Matrix來縮放 public static Drawable resizeImage(Bitmap bitmap, int w, int h) { Bitmap BitmapOrg = bitmap; int width = BitmapOrg.getWidth(); int height = BitmapOrg.getHeight(); int
Time of Update: 2015-08-18
標籤: Application.DoEvents()的作用:處理當前在訊息佇列中的所有 Windows 訊息。 private void button1_Click(object sender, EventArgs e) { for (int i = 0; i < 10000; i++) { label1.Text = i.ToString();
Time of Update: 2015-08-18
標籤:1.常用執行個體function add (a,b){ alert(a+b);}function sub(a,b){ alert(a-b);}add.call(sub,4,3);相當於add(4,2);2.改變作用哉function Animal(){ this.name="Animal"; this.showName=function(){ alert(this.name); }}function Cat(){ this.name="Cat";}var
Time of Update: 2015-08-18
標籤:1. AppDelegate.h 定義TabBarController#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window;@property (strong, nonatomic)
Time of Update: 2015-08-18
標籤:以往 我們往往在輸入 "." 然後 alt+/ 來進行智能提示,下面這個方法,可以幫你大幅度的提高智能開啟 Eclipse -> Window -> Perferences(喜好設定),會開啟個Perferences 的設定介面。 找到Java 下的 Editor(編輯器) 下的 Content Assist(內容輔助) , 右邊出現的選項中,有一個Auto activation triggers for Java:(java的自動啟用觸發器)
Time of Update: 2015-08-18
標籤:1.
Time of Update: 2015-08-18
標籤:1.AppDelegate.h定義一個UINavigationController #import <UIKit/UIKit.h>#import "MainViewController.h" @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @property
Time of Update: 2015-08-18
標籤:前面講過:移動端與PHP服務端介面通訊流程設計(基礎版)對於 api_token 的校正,其安全性還可再增強: 增強地方一: 再增加2張表,一個介面表,一個授權表,設計參考如下:介面表 欄位名 欄位類型 注釋 api_id int 介面ID api_name varchar(120) 介面名,以"/"作為分割線,如 blog/Index/addBlog api_domain varchar(255
Time of Update: 2015-08-18
標籤: 在使用新浪SDK的時候,就出現了這個問題,一直以為是代碼問題,但核對新浪SDK的DEMO後,發現代碼流程都對呀 在Manifest.xml中注入SDK的WebBrowser
Time of Update: 2015-08-18
標籤: @Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); Rect frame = new Rect(); getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); int
Time of Update: 2015-08-18
標籤:開發過程裡列印Log經常要表明Log所在的類和方法,比如: Log.e(TAG,"MainActivity.onResume. Are you ok?");以前每次都是手打或複製,前段時間用AndroidStudio的時候,發現可以直接在LiveTemplate裡使用變數匯入類和函數名,忽然之間發現自己以前too young too
Time of Update: 2015-08-18
標籤:快速鍵 開發 大括弧 在這裡,自己整理了在使用AndroidStudio開發工具所使用到的一些快速鍵,也出於在開發過程中節省時間提升效率,然而可能多數開發人員之前使用的都是Eclipse開發工具,可能開始都不習慣,但是使用的時間長了就會習以為常了。 常用的快速鍵如下: Ctrl+N:尋找類Ctrl+Shift+N:尋找檔案Ctrl+Alt+L
Time of Update: 2015-08-18
標籤:android gridview 關鍵代碼 /** * 設定GridView的寬度 * * @param defaultColumns 設定列數 4 * @param defaultRows 設定行數 2 */ private void setGridViewValue(GridView gridView, int postion, int
Time of Update: 2015-08-18
標籤:android注意:在橫屏豎屏切換過程中,Activity會被重新建立onCreate方法會重新執行如果沒有id的組件如編輯框等則橫屏填寫的編輯框中的資料,寫到一半後如果豎屏顯示,資料會丟失Google解決方案:如果擁有id會在第一次建立Activity,執行完onCreate()方法之後把id組件中對應的值臨時儲存存起來,在旋轉後再次建立Activity時但是是在 執行完onCreate()方法之後!!!!!執行完之後!!!!根據id找到對應的
Time of Update: 2015-08-18
標籤:ios plist 屬性列表 增刪改查 摘要:iOS的儲存方式之一——屬性列表plist,還是經常見到的,可以很方便的用來管理一些有序的批量資料,特別是用來顯示固定的內容到表單上時,不需要在代碼中反覆地繁瑣編寫數組,而可以在plist屬性列表中進行可視化操作,極為便捷,本文講解如何建立和使用plist列表,並顯示在表單上。達到下面的效果:建立plist屬性
Time of Update: 2015-08-18
標籤:一、問題描述 在Android典型介面設計一文中,實現典型滑動導航介面,其實使用ActionBar 也可以輕鬆實現這一效果,甚至也可實作類別似Android典型介面設計(3)的雙導航效果。可見ActionBar還是比較強大的,關鍵要深入進去、靈活的運用,下面我們就使用ActionBar實現的效果:二、本例特點1、 相容低版本2、 使用ActionBar 分體設計(split)3、 Tab使用自訂View4、 結合ViewPager實現滑動導航三、代碼講解: 1
Time of Update: 2015-08-18
標籤:ios class 類簇 cluster 我們都知道在iOS中類簇的使用是非常普遍的,比如NSNumber、NSString、NSArray等等都是類簇。我們以NSNumber舉例來說,對於int,bool, unsigned int 等等資料類型,我們如何把它們封裝成類的形式呢?