visited 13 states (5.77%)
Create your own visited map of The World or Triposo world travel guide for Android

2014-12-09

Android應用程式中設定螢幕方向或設定旋轉後行為與動態變更銀幕顯示方向

強制設定螢幕方向:

打開工程中的 AndroidManifest.xml 檔,在 中,添加屬性資訊:

android:screenOrientation="portrait"  ->垂直
android:screenOrientation="landscape" ->水平

設定螢幕旋轉後行為:

打開工程中的 AndroidManifest.xml 檔,在 中,添加一條屬性資訊:

android:configChanges=”orientation|keyboardHidden|keyboard”  ->API level <= 12
android:configChanges=”orientation|keyboardHidden|keyboard|screenSize” -> API level > 13

這個屬性指的是,當後邊屬性值代表的事件發生時,Activity 會執行某個函數,orientation 指的是當螢幕旋轉時,keyboardHidden 與keyboard指鍵盤輔助功能改變。“|”為或符號,指這兩個中任意一個發生,就執行 Activity 某個函數。如果你的開發 API 等級等於或高於 13,你還需要再加入screenSize,因為 screenSize 會在螢幕旋轉時改變。

再重寫 onConfigurationChanged() 方法:
@Override
public void onConfigurationChanged(Configuration newConfig) {
    // TODO Auto-generated method stub
    super.onConfigurationChanged(newConfig);
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
        // your code
    }
    else {
        // your code
    }
}

在 if、else 中可以設定所需要的動作與畫面規劃,若使用了 setContentView(R.layout.xxxx) 函數,就可以實現:每次螢幕旋轉時,調用不同的佈局。

動態更改螢幕方向:

有些時候,我們不需要把程式寫死,需要在程式中有需要的時候旋轉螢幕,例如:在“設置”裏添加一個 ListView 項,可通過點擊選擇橫屏或豎屏。(比如:電子書軟體)
假設有一個按鈕,我們僅重寫 OnClick() 函數:

@Override
public void onClick(View v) {
    // 如果豎排,則改為橫排
    if (getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }
    // 如果橫排,則改為豎排
    else if (getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }
}
重點就是:getRequestedOrientation() 函數、setRequestedOrientation() 函數的使用。
注意:使用這種方法,必須事先在 AndroidManifest.xml 的 中,添加android:screenOrientation 屬性值,不然 getRequestedOrientation() 可能會出問題。

2014-12-08

Android應用程式中Timer元件的使用範例

以Timer元件做一個計時器來了解Timer的設計與應用

activity_main.xml:



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="碼表:" />

        <TextView
            android:id="@+id/timer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="00:00" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/start"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="開始" />

        <Button
            android:id="@+id/stop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="停止" />
        
        <Button
            android:id="@+id/zero"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="歸零" />        
            
        <Button
            android:id="@+id/end"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="結束" />        
    </LinearLayout>

</LinearLayout>
MainActivity.java:



package com.example.timer;

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

	private TextView timer;
	private Button start;
	private Button stop;
	private Button zero;
	private Button end;
	private boolean startflag=false;
	private int tsec=0,csec=0,cmin=0;


	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		timer = (TextView)findViewById(R.id.timer);
		start = (Button)findViewById(R.id.start);
		stop = (Button)findViewById(R.id.stop);
		zero = (Button)findViewById(R.id.zero);
		end = (Button)findViewById(R.id.end);
		
		//宣告Timer
		Timer timer01 =new Timer();
		
		//設定Timer(task為執行內容,0代表立刻開始,間格1秒執行一次)
		timer01.schedule(task, 0,1000);

		//Button監聽
		start.setOnClickListener(listener);
		stop.setOnClickListener(listener);
		zero.setOnClickListener(listener);
		end.setOnClickListener(listener);
	}
	
	//TimerTask無法直接改變元件因此要透過Handler來當橋樑
	private Handler handler = new Handler(){
		 public  void  handleMessage(Message msg) {
			 super.handleMessage(msg);
			 switch(msg.what){
			 case 1:
		 csec=tsec%60;
		 cmin=tsec/60;
                 String s="";
                 if(cmin <10 s="<span" style="color: #2a00ff;">"0"
+cmin; }else{ s=""+cmin; } if(csec < 10){ s=s+":0"+csec; }else{ s=s+":"+csec; } //s字串為00:00格式 timer.setText(s); break; } } }; private TimerTask task = new TimerTask(){ @Override public void run() { // TODO Auto-generated method stub if (startflag){ //如果startflag==true則每秒tsec+1 tsec++; Message message = new Message(); //傳送訊息1 message.what =1; handler.sendMessage(message); } } }; private OnClickListener listener =new OnClickListener(){ @Override public void onClick(View v) { // TODO Auto-generated method stub switch(v.getId()){ case R.id.start: startflag=true; break; case R.id.stop: startflag=false; break; case R.id.zero: tsec=0; //TextView 初始化 timer.setText("00:00"); break; case R.id.end: finish(); break; } } }; @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }

2014-12-04

Android 中 startActivity的兩種寫法

方法一:

Intent piIntent = new Intent();
piIntent.setClass(this, ProgramInfoActivity.class);
startActivity(piIntent);
方法二:
startActivity(new Intent(this, ProgramInfoActivity.class));

Android開發中Eclipse 出現 INSTALL_FAILED_INSUFFICIENT_STORAGE的解決方式

在 Eclipse 開發 Android 時出現以下的錯誤

[2014-xx-xx 19:09:29 – xxx] Installation error:  INSTALL_FAILED_INSUFFICIENT_STORAGE

[2014-xx-xx 19:09:29 – xxx] Please check logcat output for more details.

[2014-xx-xx 19:09:29 – xxx] Launch canceled!

問題是出在APK無法安裝在手機上執行

解決方法有兩種

1.到 AndroidManifest.xml 添加下面的代碼,強迫將 apk 安裝在 sd 卡上

android:installLocation="preferExternal"


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="tw.example"
    android:installLocation="preferExternal"
    android:versionCode="1"
    android:versionName="1.0" >
2. 移除之前的程式 重新編譯 android APK 再執行

2014-12-01

Android中監聽tab頁面切換後所對應的動作

常常在設計Android軟體中,為了排版的精簡與分類,使用到TAB物件設計版面,這時就需要知道如何在特定的頁面被選取時,做出對應的動作。重點在於傳入的 tabId 也就是每個分頁的標籤名稱,有了這個資訊就可區分是哪一個頁面被選取。
public class MainActivity extends FragmentActivity{
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        mTabHost = (TabHost)findViewById(R.id.tabHost);
        mTabHost.setup();
         
        mTabHost.setOnTabChangedListener(
                new OnTabChangeListener(){
                    @Override
                    public void onTabChanged(String tabId) {
                        //do what you want to do
                        Toast.makeText(getApplicationContext(), "TabId=" + tabId, Toast.LENGTH_LONG).show();
                    }
                }
            );
    }
}