UI:android
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="helloworld"
android:id="@+id/btnEnter"
android:layout_marginTop="96dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:onClick="MyClick"/><!--定義一個單擊事件-->
Code:
import android.view.View;<!--須要導入-->
public void MyClick(View v)
{
ShowDialog("Hello world");
}
/*
顯示
*/
private void ShowDialog(String str) {
new AlertDialog.Builder(MainActivity.this)
.setMessage(str)
.show();
}
開發步驟:
一、下載好SDK,這個能夠去官網下載,目前最新的5.0,其實當學習來用已經夠了
二、新建一個Andoroid程序,MyAndroidDemo1,拖一個button控件設置好ID和text,而後到Main主程序裏寫一個MyClick方法,設置button點擊事件選擇MyClick
三、設置模擬器、主題、啓動程序、安卓的版本
四、打開Tools-Android-AVD Manager,建立一個已經下載的skd版本,而後啓動
五、運行程序,看效果
效果:
若有存在不合適的地方能夠與我聯繫,謝謝android-studio