摘录自
书名:第一行代码——Android(第2版)
作者:郭霖
day 3
活动的生存期
onCreat()会在活动第一次被创建的时候调用
onStart()当活动有不可见变为可见时被调用
onResume()这个方法在活动准备号和用户进行交互的时候调用
onPause()这个方法在活动准备去启动或者恢复另一个活动的时候调用。
onStop()这个方法在活动完全不可见的时候被调用
onDestroy()这个方法在活动被销毁之前调用
onRestart()这个方法在活动由停止状态变为运行状态之前调用
-
完整生存期
活动在onCreat()方法和onDestroy()方法之间所经历的
-
可见生存期
活动在onStart()方法和onStop()方法说之间所经历的
-
前台生存期
活动在onResume()方法和onPause()方法之间所经历的
常见控件使用方法
文字TextView
android:gravity="center"
<!--对齐方式可以是top、bottom、left、right-->
android:textSize="24sp"
<!-- 字体大小单位为sp -->
android:textColor="#00ff00"
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="this is a text_view"
android:textSize="18sp"
android:textColor="#00ff00"
/>
按钮Button
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ChangeImage"
/>
//点击按钮显示hello
Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "Hello",
Toast.LENGTH_SHORT).show();
}
});
编辑文本EditText
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Type something here"
android:maxLines="2"
/>
<!--hint 预先在文本框内显示提示文字-->
<!--maxLines 控制文本框最大高度-->
//按键获取输入框里的文字
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String inputText = editText.getText().toString();
Toast.makeText(MainActivity.this, inputText,
Toast.LENGTH_SHORT).show();
}
});
图片显示ImageView
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/img_1"
/>
<!--@drawable/name引用资源-->
//按键切换照片
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
imageView.setImageResource(R.drawable.img_2);
}
});
进度条ProgressBar
//按键显示进度条
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (progressBar.getVisibility() == View.GONE) {
progressBar.setVisibility(View.VISIBLE);
} else {
progressBar.setVisibility(View.GONE);
}
}
});
警告对话
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this);
dialog.setTitle("this is a dialog");
dialog.setMessage("something important");
dialog.setCancelable(false);
dialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//设置点击ok的事件
}
});
dialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//设置点击cancel的事件
}
});
dialog.show();
}
});