Time of Update: 2015-10-18
標籤:Android1.6開始支援多種解析度的處理,原理簡而言之就是根據螢幕參數,動態載入資源檔。在Android專案檔結構中,drawable檔案夾下包含三個子檔案夾,分別是drawable-hdpi,drawa-mdpi,drawa-ldpi,分別存放hdpi,mdpi,ldpi的位元影像。應用程式運行時,Android系統會根據當前裝置的螢幕大小、解析度、螢幕密度、方向、長寬比等資訊,選擇相應檔案夾進行載入。Android配置修飾符的定義規則如下:1、在res檔案夾下建立目錄,命名為-這種
Time of Update: 2015-10-18
標籤:Android M(6.0)相比之前的版本,做了比較多的最佳化與改進。其中變化最大的一點是許可權管理方面的改變,即不再是應用安裝時授權,而改為運行時授權機制;一直以來,系統安全都是使用者非常關心的問題,而之前的版本都是在安裝應用時統一、強制的進行授權。一般使用者在安裝某個應用時,可能並不想授予應用某個許可權,或是很容易忽略應用許可權列表。致使很多應用肆意的申請許可權,做一些不法的事情!這個問題在Android
Time of Update: 2015-10-18
標籤:移動端的rem:使用方法:設定html的font-size,根據瀏覽器解析度縮放設定根項目font-size為100px這樣好用的值,不要設為10px這樣的;然後擷取瀏覽器的解析度,也就是視口寬度,p(比例尺)= 視口寬度/寬度根項目font-size=100px*p然後來個resize去跟隨瀏覽器大小變化 1(function (win){ 7 var doc = win.document, 8 html = doc.documentElement, 9
Time of Update: 2015-10-18
標籤:初代iPhone2007年,初代iPhone發布,螢幕的寬高是 320 x 480 像素。下文也是按照寬度,高度的順序排列。這個解析度一直到iPhone 3GS也保持不變。 那時編寫iOS的App(應用程式),只支援絕對位置。比如一個按鈕(x, y, width, height) = (20, 30, 40, 50),就表示它的寬度是40像素,高度是50像素,放在(20, 20)像素的位置。iPhone 42010年,iPhone
Time of Update: 2015-10-18
標籤:1.Important: UIAlertView is deprecated in iOS 8. (Note that UIAlertViewDelegate is also deprecated.) To create and manage alerts in iOS 8 and later, instead use UIAlertController with
Time of Update: 2015-10-18
標籤:一、Android編碼規範1.java代碼中不出現中文,最多注釋中可以出現中文2.局部變數命名、靜態成員變數命名只能包含字母,單詞首字母出第一個外,都為大寫,其他字母都為小寫3.常量命名只能包含字母和_,字母全部大寫,單詞之間用_隔開4.layout中的id命名命名模式為:view縮寫_模組名稱_view的邏輯名稱view的縮寫詳情如下LayoutView:lvRelativeView:rvTextView:tvImageView:ivImageButton:imButton:btn5.a
Time of Update: 2015-10-18
標籤:package com.sxt.day07_01;import android.app.Activity;import android.app.Notification;import android.app.NotificationManager;import android.app.PendingIntent;import android.content.Context;import android.content.Intent;import
Time of Update: 2015-10-18
標籤:1. 申請百度開發人員帳號及百度OAuth簡介。(1)申請開發人員帳號:http://developer.baidu.com/(2)建立項目:http://developer.baidu.com/console#app/project (3)介紹OAuth: OAuth2.0(開放授權)是一個開放標準,使用者授權後,第三方應用無需擷取使用者的使用者名稱和密碼就可以訪問該使用者在某一網站上儲存的私密的資源(如照片,視頻,連絡人清單)。Access
Time of Update: 2015-10-18
標籤: 1.顯示調用方法Intent intent=new Intent(this,OtherActivity.class); //方法1Intent intent2=new Intent();intent2.setClass(this,
Time of Update: 2015-10-18
標籤: 安卓滑動條的操作特別簡單,通過getProgress()可以獲得SeekBar的位置,通過setProgress(int progress)可以設定SeekBar的位置。要想動態擷取使用者對SeekBar的操作的話,只需要設定setOnSeekBarChangeListener即可。setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() 範例程式碼如下: 1 import android.support.v7.
Time of Update: 2015-10-18
標籤:1.獲得螢幕的寬高 [UIScreen mainScreen].bounds.size.width [UIScreen mainScreen].bounds.size.height2.Iphone版本判別: iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640,1136),
Time of Update: 2015-10-18
標籤:問題描述 org.hibernate.MappingException: Could not determine type for: java.utils.Date, at table: STUDENTS, for columns: [org.hibernate.mapping.Column(DATE)]at org.hibernate.mapping.SimpleValue.getType(SimpleValue.java:349)at
Time of Update: 2015-10-18
標籤:Support LibraryAndroid Support v4: 用在API lever 4(即Android 1.6)或者更高版本之上。它包含了相對更多的內容,而且用的更為廣泛,例如:Fragment,NotificationCompat,LoadBroadcastManager,ViewPager,PageTabStrip,Loader,FileProvider 等Gradle引用方法:compile ‘com.android.support:support-
Time of Update: 2015-10-18
標籤:SDWebImage託管在github上。https://github.com/rs/SDWebImage這個類庫提供一個UIImageView類別以支援載入來自網路的遠程圖片。具有緩衝管理、非同步下載、同一個URL下載次數控制和最佳化等特徵。使用示範的代碼: UITableView使用UIImageView+WebCache類(基本應用,UIImageView的一個category)前提#import匯入UIImageView+WebCache.h檔案,然後在tableview
Time of Update: 2015-10-18
標籤:SQLite資料庫很小,佔用記憶體只有幾百K,安卓和IOS都是用的SQLite資料庫。 頁面:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"&
Time of Update: 2015-10-18
標籤:Happy 2004問題描述 :Consider a positive integer X,and let S be the sum of all positive integer divisors of 2004^X. Your job is to determine S modulo 29 (the rest of the division of S by 29). Take X = 1 for an example. The positive integer
Time of Update: 2015-10-18
標籤:對於一個定長(size = n)的數列a, 若其存在“位置相關”的子集(含空集)使得該子集所有元素之和為k,那麼將數列a計數。其中數列a中任一元素a[i]在[0, l]內自由取值。資料條件0≤n, k ≤ 20, 0≤ l ≤ 1e9,計數結果對mod = 1e9 +
Time of Update: 2015-10-18
標籤: 上一章,我們讀完了Conguration這個類。最後我們發現,Conguration就是為了資料庫的初始化。其中包含了記憶體大小、資料庫名稱、資料庫版本、parser資訊。 public static synchronized void initialize(Configuration configuration) { if (sIsInitialized) { Log.v("ActiveAndroid already initialized.");
Time of Update: 2015-10-18
標籤:sendmail nagios 郵件警示 smtp服務 使用Centos系統內建的sendmail服務作為用戶端,使用第三方SMTP服務發送郵件警示。此功能是在nagios服務正常安裝啟動並執行基礎上實現的;因此要先安裝好基本的nagios運行環境,這個可以參考本人相關的博文。1.軟體檢測及安裝#rpm -q sendmail不存在怎安裝#yum -y
Time of Update: 2015-10-18
標籤:nagios圖表郵件 pnp4n_send_host_mail.pl pnp4n_send_service_mail.pl mail-sendmail 利用pnp4n_send_host_mail.pl和pnp4n_send_service_mail.pl外掛程式實現nagios監控資訊的圖表化的郵件發送。注意:此功能是在nagios服務正常安裝,並安裝了