android studio環境安裝過程
一、下載所需要的軟體
1.android studio的下載地址:http://www.android-studio.org/(我下載的是第二個,因為我之前下了一個SDK就不想再下了,但是如果你沒下的話就推薦第一個)
2. 天天模擬器:在網上隨便百度一個就好了
3. jdk1.7版本(因為我之前安裝web環境的時候已經裝過了,所以我這次也就沒裝了)
二、安裝過程1.下載好之後就開啟exe,點選next
2.再next
3.改一下路徑,建議你可以新建一個android資料夾,裡面再分別建studio,sdk,ttmnq,workspace這幾個資料夾,這樣的話有關android的軟體就全在這裡面了,就不會很亂。
4.點選next,等待·····································
5.進度條結束,再nexttttttt
6.welcome介面,nexttttt啦
7.選擇custom模式,因為我要選擇sdk路徑···
8.將路徑改為sdk的路徑,next...
9.建立一個新專案
10.改一下這個引數,我是按照我們做實驗的資料改的,具體什麼含義我目前還不清楚,今天才上了第一堂實驗課,emmmmmmmm....
11.選空白介面就好了
12。然後就到了這個尤為漫長的介面,我等了好像半個多小時,之前我一直不知道這個幹什麼,還給它×掉了好幾次,後來發現是因為第一次載入下載配置之類的、、、
13.結束之後,helloworld~~~~~~
安裝到此結束啦!!!!
(補充一下,在安裝過程中出現過http pro..什麼的一個視窗,然後不知道按了什麼就跳到下一個介面了,如果遇到的話不要慌張,反覆瞎點幾次應該就會沒有了)
hhhhhhha
三。來一個正式(jian dan)一點的程式
activity_main.xml
main_activity.java<?xml version="1.0" encoding="utf-8"?> <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"> <TextView android:id="@+id/titleText" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="使用者登入註冊" android:textColor="#000000" android:textSize="24sp" android:gravity="center"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:padding="15dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="使用者名稱:" android:textColor="#000000" android:textSize="20dp" /> <EditText android:id="@+id/username" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入使用者名稱" android:inputType="textPersonName" android:paddingBottom="15dp" android:paddingTop="15dp" android:textSize="18sp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:padding="15dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="密 碼:" android:textColor="#000000" android:textSize="20dp" /> <EditText android:id="@+id/password" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入密碼" android:inputType="textPassword"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="15dp" android:gravity="center"> <Button android:id="@+id/register" android:layout_width="120dp" android:layout_height="wrap_content" android:onClick="onRegister" android:text="註冊" android:textSize="18sp" android:layout_margin="10dp"/> <Button android:id="@+id/login" android:layout_width="120dp" android:layout_height="wrap_content" android:onClick="onLogin" android:text="登入" android:textSize="18sp" android:layout_margin="10dp"/> </LinearLayout> <ImageView android:layout_width="200dp" android:layout_height="200dp" android:src="@drawable/login" android:layout_gravity="center" android:scaleType="fitCenter"/> </LinearLayout>
package com.example.administrator.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends Activity {
// 宣告控制元件變數
Button bt_register;
Button bt_login;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//初始化控制元件變數
bt_register=(Button)findViewById(R.id.register);
//為按鈕新增監聽器,當點選事件發生時,彈出Toast提示
bt_register.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this,"您點選了註冊按鈕",Toast.LENGTH_LONG).show();
}
});
//初始化控制元件變數
bt_login=(Button)findViewById(R.id.login);
//為按鈕新增監聽器,當點選事件發生時,彈出Toast提示
bt_login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this,"您點選了登入按鈕",Toast.LENGTH_LONG).show();
}
});
}
}
點選執行,發現沒有連線到天天模擬器,so......連線一下(這個沒截圖,就簡單講一下)步驟:
(1)開啟天天模擬器,設定--關於平板電腦---版本號(對版本號連續點四五次就會開啟開發者選項)
(2)設定--開發者選項--usb除錯(勾上)
(3)在sdk/platformstool/中新建一個txt,內容為:adb connect 127.0.0.1:6555
儲存,然後修改成.bat檔案型別,執行
這時候你會到android studio中點執行就會出現這個了,點ok
就出來執行結果啦!!!
over!!!!