前兩天開始學習Android
開發,本來想用eclipse
進行開發,但是到https://developer.android.com 上一看,發現android studio
被大力推廣,說明google已經把ide重心投入到了android sdudio
上,所以就有了本文,用來介紹android studio
入門。
安裝什麼的都不用說了,網上教程很多,下載的時候記得帶上android
的sdk。打開as,點擊File
,新建工程。
我的工程名是Test,然後,默認next,記得選擇BlankActivity
。最後項目建立完成。
打開res
目錄下的layout
文件夾,雙擊activity_main.xml
,將button
按鈕拖入手機中,改名為change。
點擊Text
我們可以看到Button這一個新加入的控件。
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="change"
android:id="@+id/button"
android:layout_marginTop="34dp"
android:layout_below="@+id/textView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
這個時候打開java
目錄,找到MainActivity.java
,雙擊打開。我們添加兩個控件聲明,同時為其賦值。完整代碼如下:
package com.sinaapp.gavin.test;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView textView;//聲明
private Button button; //聲明
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView)findViewById(R.id.textView); //賦值
button = (Button)findViewById(R.id.button); //賦值
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
接下來,在onCreate
方法中為button
設置按鍵監聽。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView)findViewById(R.id.textView);
button = (Button)findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText("changed");
}
});
}
在測試時候,你可以設置斷點,當程序運行到指定的位置後,它會自動進入斷點,顯示當前變量的一些內容,這個比較好用,因為我發現我寫的程序經常出現NullException
。這個時候,我就能找到我在哪裡沒有為變量賦值。
在工具欄run
工具框下點擊edit configuration
,將target devic
e設置為USB device。這時,將你的安卓手機連上你的電腦,如果沒有驅動,請下載豌豆莢,他會默認下載你的手機的驅動。
點擊run,現在就等著在手機上出現吧。
在工具欄的build
選項中選擇generate signed apk。
這時,需要一個密鑰,我們使用java
自帶的密鑰生成器keytool
,打開windows
自帶的cmd命令框。輸入:
keytool -genkey -alias gavin -keypass 654321 -keyalg RSA -keysize 1024 -validity 365 -keystore e:\key\gavin.keystore -storepass 123456 -dname CN=abcd
keypass是你自己的密碼,不能被公布,storepass是公開的密碼,CN是你的名字,默認輸出到E盤的key文件夾下。
在第一個password
中輸入公開的密碼,在第二個password
輸入你自己的密碼,點擊next,下一步就可以打包成apk
以供下載。
android studio
是一個好ide
,它是基於idea
的專門為安卓進行過二次開發的一個集成開發環境,在這裡你能夠快速找到你想用的一些功能,總之比eclipse
好用很多。
在Ubuntu 15.04下安裝Android Studio http://www.linuxidc.com/Linux/2015-06/119318.htm
Ubuntu 12.04(64位)安裝Android Studio 全過程 http://www.linuxidc.com/Linux/2013-05/84812.htm
Android Studio v0.1嘗鮮 http://www.linuxidc.com/Linux/2013-05/84681.htm
Android Studio使用教程 http://www.linuxidc.com/Linux/2013-05/84579.htm
Android Studio開發指南 http://www.linuxidc.com/Linux/2013-05/84543.htm
Android Studio設置主題 和 不支持中文的問題解決方法 http://www.linuxidc.com/Linux/2013-05/84488.htm
Android Studio 下載安裝以及不能打開的解決辦法 http://www.linuxidc.com/Linux/2013-05/84409.htm
Android Studio安裝使用圖文教程 http://www.linuxidc.com/Linux/2014-09/106914.htm
Android Studio 的詳細介紹:請點這裡
Android Studio 的下載地址:請點這裡