标签 安卓开发 下的文章
无线ADB adbWireless v1.5.4简繁汉化版 & 使用方法
Android_Doc
Android SDK 官方下载页面
http://developer.android.com/sdk/index.html
Android Open Source
https://android.googlesource.com/
https://developers.google.com/android/nexus/images
android_Doc
http://stackoverflow.com/questions/2898053/android-offline-documentation-and-sample-codes/
目前最新版本:[https://dl-ssl.google.com/android/repository/docs-23_r02.zip]2
自己搭建的Android_Doc
SingleTask和SingleInstance
SingleTop
Android中Activity的启动模式
获取Avtivity的返回参数
传递值对象(Serializable和Parcelable)
传递数据包Bundle
在Activity之间传递参数
Activity的生命周期
创建一个APP
在“MainActivity”中
启动一个activity
拖进一个按钮
命名为“启动另一个activity”
此时添加一个空白的activity模板或class 命名为AnotherAty
在activity_another_aty.xml中text为这是另一个activity
在MainActivity.java中
findViewById(R.id.btnStartAnotherAty).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(MainActivity.this,AnotherAty.class));
// startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://m69w.com")));
}
});
注意:btnStartAnotherAty是按钮启动另一个按钮的ID
AnotherAty是一个创建空白activity的名
绑定自定义视图
在layout中创建一个NEW Resource File“my_layout”
拖进两个按钮
在activity_another_aty.xml中修改为
运行
安卓中的activity
android studio1.4
创建一个project
在layout中的activity_main.xml显示helloworld!
运行!