1. TextView中的getTextSize返回值是以像素(px)爲單位的,html
而setTextSize()是以sp爲單位的.java
因此若是直接用返回的值來設置會出錯,解決辦法是android
[java] view plaincopychrome
<span style="font-size:16px;">setTextSize(int unit, int size) apache
TypedValue.COMPLEX_UNIT_PX : Pixels 編程
TypedValue.COMPLEX_UNIT_SP : Scaled Pixels 瀏覽器
TypedValue.COMPLEX_UNIT_DIP : Device Independent Pixels</span> 網絡
2. 在繼承自View時,繪製bitmap時,須要將圖片放到新建的drawable-xdpiapp
中,不然容易出現繪製大小發生改變eclipse
3. 在文字中加下劃線: textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);
4. scrollView是繼承自frameLayout,因此在使用LayoutParams時須要用frameLayout的
5.在Android中幾種網絡編程的方式:
(1)針對TCP/IP的Socket、ServerSocket
(2)針對UDP的DatagramSocket、DatagramPackage。這裏須要注意的是,考慮到Android設備一般是手持終端,IP都是隨着上網進行分配的。不是固定的。所以開發也是有 一點與普通互聯網應用有所差別的。
(3)針對直接URL的HttpURLConnection
(4)Google集成了Apache HTTP客戶端,可以使用HTTP進行網絡編程。針對HTTP,Google集成了Appache Http core和httpclient 4版本,所以特別注意Android不支持 httpclient 3.x系列,並且目前並不支持Multipart(MIME),須要自行添加httpmime.jar
(5)使用Web Service。Android能夠經過開源包如jackson去支持Xmlrpc和Jsonrpc,另外也能夠用Ksoap2去實現Webservice
(6) 直接使用WebView視圖組件顯示網頁。基於WebView 進行開發,Google已經提供了一個基於chrome-lite的Web瀏覽器,直接就能夠進行上網瀏覽網頁。
6. TranslateAnimation(float fromXDelta, float toXDelta, float fromYDelta, float toYDelta)
這個是咱們最經常使用的一個構造方法,
float fromXDelta:這個參數表示動畫開始的點離當前View X座標上的差值;
float toXDelta, 這個參數表示動畫結束的點離當前View X座標上的差值;
float fromYDelta, 這個參數表示動畫開始的點離當前View Y座標上的差值;
float toYDelta)這個參數表示動畫開始的點離當前View Y座標上的差值;
若是view在A(x,y)點 那麼動畫就是從B點(x+fromXDelta, y+fromYDelta)點移動到C 點 (x+toXDelta,y+toYDelta)點.
7.android提供了幾種在其餘線程中訪問UI線程的方法。
Activity.runOnUiThread( Runnable )
View.post( Runnable )
View.postDelayed( Runnable, long )
Hanlder
AsyncTask(推薦使用)
[java] view plaincopy
從網上獲取一個網頁,在一個TextView中將其源代碼顯示出來
package org.unique.async;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.ArrayList;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class NetworkActivity extends Activity{
private TextView message;
private Button open;
private EditText url;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.network);
message= (TextView) findViewById(R.id.message);
url= (EditText) findViewById(R.id.url);
open= (Button) findViewById(R.id.open);
open.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
connect();
}
});
}
private void connect() {
PageTask task = new PageTask(this);
task.execute(url.getText().toString());
}
class PageTask extends AsyncTask<String, Integer, String> {
// 可變長的輸入參數,與AsyncTask.exucute()對應
ProgressDialog pdialog;
public PageTask(Context context){
pdialog = new ProgressDialog(context, 0);
pdialog.setButton("cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int i) {
dialog.cancel();
}
});
pdialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
public void onCancel(DialogInterface dialog) {
finish();
}
});
pdialog.setCancelable(true);
pdialog.setMax(100);
pdialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pdialog.show();
}
@Override
protected String doInBackground(String... params) {
try{
HttpClient client = new DefaultHttpClient();
// params[0]表明鏈接的url
HttpGet get = new HttpGet(params[0]);
HttpResponse response = client.execute(get);
HttpEntity entity = response.getEntity();
long length = entity.getContentLength();
InputStream is = entity.getContent();
String s = null;
if(is != null) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buf = new byte[128];
int ch = -1;
int count = 0;
while((ch = is.read(buf)) != -1) {
baos.write(buf, 0, ch);
count += ch;
if(length > 0) {
// 若是知道響應的長度,調用publishProgress()更新進度
publishProgress((int) ((count / (float) length) * 100));
}
// 讓線程休眠100ms
Thread.sleep(100);
}
s = new String(baos.toByteArray()); }
// 返回結果
return s;
} catch(Exception e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onCancelled() {
super.onCancelled();
}
@Override
protected void onPostExecute(String result) {
// 返回HTML頁面的內容
message.setText(result);
pdialog.dismiss();
}
@Override
protected void onPreExecute() {
// 任務啓動,能夠在這裏顯示一個對話框,這裏簡單處理
message.setText(R.string.task_started);
}
@Override
protected void onProgressUpdate(Integer... values) {
// 更新進度
System.out.println(""+values[0]);
message.setText(""+values[0]);
pdialog.setProgress(values[0]);
}
}
}
8.Spinner不能用在dialog和tabhost中的解決辦法
9. eclipse關聯JDK源碼
(1).點 「window」-> "Preferences" -> "Java" -> "Installed JRES"
(2).此時"Installed JRES"右邊是列表窗格,列出了系統中的 JRE 環境,選擇你的JRE,而後點邊上的 "Edit...", 會出現一個窗口(Edit JRE)
(3).選中rt.jar文件的這一項:「c:\program files\java\jre_1.5.0_06\lib\rt.jar」點 左邊的「+」 號展開它,
(4).展開後,能夠看到「Source Attachment:(none)」,點這一項,點右邊的按鈕「Source Attachment...」, 選擇你的JDK目錄下的 「src.zip」文件
10.Unable to open sync connection!
把設置裏的USB調試重啓
11.EditText設置光標位置問題
EditText中有一些預置文本的時候,想把光標調到最前面,一開始是使用的setSelection(0),結果發如今三星P1000上面有問題。通過研究發現須要先調用EditText.requestFocus(),再調用setSelection(0)。不然的話,在2.x的機器上有問題,但3.x上面是好着的。
12.Android中Home鍵被系統保留,沒法象監聽回退鍵同樣用onKeyDown,可是能夠根據按下home鍵時會觸發的activity和view的一些事件來添加本身的處理代碼.網上有人說能夠用onAttachWindow來攔截Home鍵,沒試過
13.在用surfaceView渲染時,若是要想在須要時其中出現其餘View,能夠將surfaceView和其餘View放在layout中,日常時能夠將其餘view隱藏
14.使用android:imeOptinos可對Android自帶的軟鍵盤進行一些界面上的設置:
[html] view plaincopy
android:imeOptions="flagNoExtractUi" //使軟鍵盤不全屏顯示,只佔用一部分屏幕
同時,這個屬性還能控件軟鍵盤右下角按鍵的顯示內容,默認狀況下爲回車鍵
android:imeOptions="actionNone" //輸入框右側不帶任何提示
android:imeOptions="actionGo" //右下角按鍵內容爲'開始'
android:imeOptions="actionSearch" //右下角按鍵爲放大鏡圖片,搜索
android:imeOptions="actionSend" //右下角按鍵內容爲'發送'
android:imeOptions="actionNext" //右下角按鍵內容爲'下一步'
android:imeOptions="actionDone" //右下角按鍵內容爲'完成'
15.爲TextView添加陰影
[html] view plaincopy
<style name="Overlay">
<item name="android:paddingLeft">2dip</item>
<item name="android:paddingBottom">2dip</item>
<item name="android:textColor">#ffffff</item>
<item name="android:textSize">12sp</item>
<item name="android:shadowColor">#00ff00</item>
<item name="android:shadowDx">5</item>
<item name="android:shadowDy">3</item>
<item name="android:shadowRadius">6</item>
</style>
<TextView android:id="@+id/test"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/<span style="background-color: rgb(250, 250, 250); font-family: Helvetica, Tahoma, Arial, sans-serif; ">Overlay</span>"
android:text="test"
android:gravity="center" />
16.如何將TextView中的中文設置成粗體?
在xml文件中使用android:textStyle="bold" 能夠將英文設置成粗體,可是不能將中文設置成粗體,將中文設置成粗體的方法是:
TextView tv = (TextView)findViewById(R.id.TextView01);
TextPaint tp = tv.getPaint();
tp.setFakeBoldText(true);