2012年5月31日

網路檔案下載─FTP



網路檔案下載─FTP: 從中華電信提供的網路存放空間,下載檔案。

使用外部元件: Apache Commons NET
   commons-net-3.0.1-src.zip 的class : 下載點

     1. Unzip it.
     2. 到Eclipse的android作業平台上的 File -> Import -> General -> File System
    

          

       3. 然後 Browse 剛才Unzip後 存放 commons-net-3.0.1-src 的夾子,找到 java 的子目錄,然後按『確定』。

4. 你的作業環境,應該會呈現下圖的樣子,如果如圖所示,表示成功,便可以開始使用了。





需開啟之權限: 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>


main.java


import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.http.util.EncodingUtils;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.widget.TextView;

public class FTPDownloadFileActivity extends Activity {
    /** Called when the activity is first created. */

private TextView tv;
private TextView tvContent;
private String fileName = "myFile.txt"; //網站上準備要下載的檔名


private final String SD_PATH = Environment.getExternalStorageDirectory().getAbsolutePath();
private final String FILE_PATH = "/download";
private final String FILE_NAME = "copy_" + fileName; //下載進手機後的檔名
private final String ENCODING = "UTF-8";
private FileInputStream fis = null;


        private ProgressDialog mProgressDialog;
 
private Handler handler = new Handler(){  //使用handler, thread 防止下載檔案太大

@Override
public void handleMessage(Message msg) {
// TODO Auto-generated method stub
super.handleMessage(msg);
mProgressDialog.dismiss(); //close
readFile();
}

};

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
     
        tv = (TextView)findViewById(R.id.textview);
        tvContent = (TextView) findViewById(R.id.textviewContent);
        processThread();
     
    }
 
 
 
    private void ftpDownload() {  //使用FTP 下載檔案
    FTPClient ftpClient = new FTPClient();
    try {
//     ftpClient.connect(InetAddress.getByName("203.66.87.21"));//與以下的String 意義一樣
    ftpClient.connect(InetAddress.getByName("ftp.myweb.hinet.net")); //中華電信的網頁IP ADDRESS
    ftpClient.login("username", "password");
    tv.setText(String.valueOf(ftpClient.isConnected()));
    ftpClient.changeWorkingDirectory("/");
    File localfile = new File ("/sdcard/download/" + FILE_NAME);
    OutputStream os = new FileOutputStream(localfile);
    ftpClient.enterLocalPassiveMode();
    ftpClient.retrieveFile(fileName, os);
    ftpClient.logout();
    ftpClient.disconnect();
    }catch (Exception e) {
    e.printStackTrace();
    }
    }
 
 
    public void readFile () {  //將內容顯示到螢幕上
     
        String result = "";
        try {
       
         File mFilePath = new File (SD_PATH + FILE_PATH);
         String mFileName = mFilePath + "/" + FILE_NAME;
         File fileText = new File (mFileName);
       
         fis = new FileInputStream(fileText);
         int length = fis.available();
         byte [] buffer = new byte [length];
         fis.read(buffer);
         result = EncodingUtils.getString(buffer, ENCODING);
         fis.close();
         tvContent.setText(result);
       
        } catch (Exception e) {
         e.printStackTrace();
        }
       }
 
 
    private void processThread() {
    mProgressDialog = ProgressDialog.show(this, "文件下載", "正在下載...");
    new Thread () {

@Override
public void run() {
// TODO Auto-generated method stub
//super.run();
ftpDownload();
prolongedActionMethod(); //做測試用的
handler.sendEmptyMessage(0);
}
   
    }.start();
    }
 
 
    private void prolongedActionMethod() { //故意延遲十秒鐘,做測試用的
    try {
    Thread.sleep(10000);
    }catch (Exception e){
    e.printStackTrace();
    }
    }
}


*************************************************
res/layout/main.xml:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello"
        />
    <!--  將 TextView 包在 ScrollView 裡,當內容太長,可以捲動。  -->
     <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fadingEdge="vertical"
        android:paddingTop="10dip"
        android:scrollbars="vertical" >

        <TextView
            android:id="@+id/textviewContent"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingTop="10dip"
            android:text=""
            android:textSize="20dp"
            android:textColor="#00FF00" />
    </ScrollView>

</LinearLayout>

2012年5月30日

背景:重複動畫




重複讓背景淡出、深入的動作:





import android.app.Activity;
import android.os.Bundle;

import android.view.animation.Animation;
import android.view.animation.AnimationUtils;


import android.widget.LinearLayout;

public class BackgroundDemoActivity extends Activity {

    private LinearLayout mLinearLayout;
    private Animation alphaAnim;


   @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
     
        mLinearLayout = (LinearLayout) findViewById(R.id.LinearLayout01);
        alphaAnim = AnimationUtils.loadAnimation(this, R.anim.alpha);
        mLinearLayout.setAnimation(alphaAnim);
      }
}


************************************************
res/anim/alpha.xml:


<?xml version="1.0" encoding="utf-8"?>
<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android">
   <alpha android:fromAlpha="1.0"
        android:toAlpha="0.6"
        android:startOffset="0"
        android:duration="5000"
        android:repeatCount="infinite"
        android:repeatMode="reverse"
        />
</set>
********************************
res/layout/main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="@drawable/gradient_selector"
    >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

</LinearLayout>

*********************************
res/drawable/gradient_selector.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item>
        <shape>
            <gradient 
                android:angle="90" 
                android:endColor="#FF00FF00" 
                android:startColor="#FFFF0000" 
                android:type="linear" />
        </shape>
        
     </item>

</selector>

**********************************************
**********************************************
當然也可以換成:traslate

res/anim/translate.xml:


<?xml version="1.0" encoding="utf-8"?>
<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android">

    <scale android:fromXScale="1"
          android:toXScale="5"
          android:fromYScale="1"
          android:toYScale="5"
          android:pivotX="50%"
          android:pivotY="50%"
          android:duration="3000"
          android:repeatCount="infinite"
 android:repeatMode="reverse"/>
 
<translate
android:fromXDelta="0"
android:toXDelta="20"
android:fromYDelta="0"
android:toYDelta="20"
android:startOffset="10"
android:duration="3000"
android:repeatCount="infinite"
android:repeatMode="reverse" />

</set>


***********************************************
***********************************************
或是
res/anim/rotate.xml:


<?xml version="1.0" encoding="utf-8"?>
<set android:shareInterpolator="false" xmlns:android="http://schemas.android.com/apk/res/android">

    <scale android:fromXScale="3"
          android:toXScale="3"
          android:fromYScale="3"
          android:toYScale="3"
          android:pivotX="50%"
          android:pivotY="50%"
          android:duration="5000"
          android:repeatCount="infinite"
 android:repeatMode="restart"/>
    <rotate
        android:fromDegrees="0"
        android:toDegrees="360"
        android:pivotX="50%"
android:pivotY="50%"
  android:startOffset="10"
android:duration="5000"
android:repeatCount="infinite"
android:repeatMode="restart"/>
 
</set>

2012年5月19日

TextView 滾動 ─利用 ScrollView


只要用 ScrollView 包起來,TextView 裡的內容便可以滾動。



res/layout/main.xml:



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="測試 TextView 的內容可以滾動"
        android:textSize="25dp" />

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fadingEdge="vertical"
        android:paddingTop="10dip"
        android:scrollbars="vertical" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingTop="10dip"
            android:text="@string/text_content"
            android:textSize="20dp" />
    </ScrollView>

</LinearLayout>

*******************************

res/values/strings:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">Hello World, Cq_TextView01Activity!</string>
    <string name="app_name">Cq_TextView01</string>
    <string name="text_content">歐美經濟情勢動盪不安,連帶影響國際油價持續走跌,預計台灣中油於下周一起,汽柴油價格可望降價1角,是從上個月油價調漲後,連續第7次調價。
現在的92無鉛汽油每公升是32.6元,自4月2日一次調漲2.3元;而95無鉛每公升為34.1元,從4月2日一次調升3.1元;此外,98無鉛每公升為36.1元,4月2日則一次增3.6元;柴油每公升是31.7元,4月2日一次調漲3.2元。
國際油價走跌,指標原油價格自上周每桶109.92美元跌到108.67美元;依據浮動油價公式以及減半調降機制初步估計,台灣中油從下周一凌晨起,可望再度調降國內汽柴油的價格,每公升調降約1角。
    </string>

</resources>



2012年5月18日

Text String 變色




Text String




public class TextViewActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        TextView tv = new TextView (this);
        String string = "Ilovemydog"; //10 letters
        SpannableStringBuilder fontStyleBuilder = new SpannableStringBuilder(string);
        fontStyleBuilder.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); //1-0 = 1 letter-> I
        fontStyleBuilder.setSpan(new ForegroundColorSpan(Color.RED), 1, 5, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);//5-1 = 4 letters-> love
        fontStyleBuilder.setSpan(new ForegroundColorSpan(Color.GREEN), 5, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);//7-5 = 2 letters -> my
        fontStyleBuilder.setSpan(new ForegroundColorSpan(Color.YELLOW), 7, 10, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);//10-7 = 3 letters -> dog
        tv.setText(fontStyleBuilder);
        tv.setTextSize(24);
        setContentView(tv);
    }
}