Python可以開發(fā)手機(jī)APP和pc桌面應(yīng)用軟件嗎?
Python是動(dòng)態(tài)語言,比較簡潔。Android不直接支持使用python開發(fā)應(yīng)用,需要使用其它中間件或者庫。PythonForAndroid提供了在android平臺(tái)上對(duì)python語言的支持;CLE支持python和java之間的交互,同時(shí)提供了一個(gè)通用的接口,可用于其它多種語言。
Wrapandroid project將android類封裝為CLE對(duì)象,從而可以使多種語言可以調(diào)用android類。使用這三個(gè)組件,可以在android平臺(tái)上直接使用python開發(fā)界面應(yīng)用程序。
在android上開發(fā)python應(yīng)用程序,編程和打包環(huán)境可以直接使用eclipse。
準(zhǔn)備環(huán)境
a: 安裝PythonForAndroid: http://code.google.com/p/android-scripting
b: CLE在程序運(yùn)行的時(shí)候,自動(dòng)從網(wǎng)絡(luò)上安裝,也可以下載庫函數(shù),放到工程中。開發(fā)需要java庫文件starcore_android_r6.jar。文件在starcore_devfiles_r6.zip中,可以從http://code.google.com/p/cle-for-android下載
c: Wrapandroid項(xiàng)目庫文件wrapandroid.jar,包含在壓縮包http:/code.google.com/p/wrapandroid-for-multilaguage/download/wrapandroid_devfiles_0_8_6.rar中。
開始編程
a. 打開eclipse, 創(chuàng)建一個(gè)新的android project “introduction”
b. 如果要從網(wǎng)絡(luò)安裝,則需要添加許可權(quán)限:
c. 將庫文件starcore_android_r6.jar和wrapandroid.jar到工程目錄下,將這兩個(gè)文件加入到工程中。
d. 編輯 IntroductionActivity.java,如下修改,加載python代碼import com.srplab.wrapandroid.*;
public class IntroductionActivity extends WrapAndroidActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
StarActivity._Call("DoAssetsFile", "python", "code.py");
}
}
同時(shí)在activity中設(shè)置下載標(biāo)志為falsepublic class IntroductionActivity extends WrapAndroidActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
DownloadFromNetFlag = false;
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
StarActivity._Call("DoAssetsFile", "python", "code.py");
}
}
只不過此時(shí)生成的安裝包大一些。
e. 編輯layout:main.xml.<?xml version="1.0" encoding="utf-8"?>
android:id="@+id/widget73"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
android:id="@+id/widget45"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
android:id="@+id/widget74"
android:layout_width="220dp"
android:layout_height="48dp"
android:text="thank for your use"
android:typeface="serif"
android:textStyle="bold"
android:textColor="#ffff0000"
android:layout_x="284dp"
android:layout_y="220dp"
android:textSize="16dp"
/>
f. 在assets目錄下,創(chuàng)建code.py文件.
推薦學(xué)習(xí):《Python教程