1、AlertDialog是一个信息提示框,当出现是,需要用户点击,才会消失
2、Toast也是一个信息提示框,出现后会根据设定的时间,自动消失
实例代码:
3、布局文件
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:id="@+id/alert"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Make an alert"></Button>
<Button android:id="@+id/toast"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Make a toast"></Button>
</LinearLayout>
2、java代码
package yyl.message
import android.app.Activity
import android.app.AlertDialog
import android.content.DialogInterface
import android.os.Bundle
import android.view.View
import android.widget.Button
import android.widget.Toast
public class MessageActivity extends Activity {
//定义变量
private Button alert = null
private Button toast = null
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState)
setContentView(R.layout.main)
//根据Id得到控件对象
alert = (Button)findViewById(R.id.alert)
toast = (Button)findViewById(R.id.toast)
//给按钮设定单击事件监听器
alert.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//显示AlertDialog
new AlertDialog.Builder(MessageActivity.this).setTitle("MessageDemo").setMessage("Err").setNeutralButton("close", new DialogInterface.OnClickListener() {
//点击AlertDialog上的按钮的事件处理代码
@Override
public void onClick(DialogInterface dialog, int which) {
System.out.println("yangyulin")
}
}).show()
}
})
toast.setOnClickListener(new View.OnClickListener() {
//显示Toast
@Override
public void onClick(View v) {
Toast.makeText(MessageActivity.this, "<Clink,Clink>", Toast.LENGTH_SHORT).show()
}
})
}
}
android系统中,当应用安装完成以后会发出一个广播action的值为android.intent.action.PACKAGE_ADDED。只要监听这个广播就可以了。监听方法,创建一个BroadcastReceiver,注册时添加过滤器,过滤器中添加以上action。
完成以上步骤,当应用安装完成后,你的应用就会收到广播。
苹果手机无法打开apk文件。
APK(全称:Android application package,Android应用程序包)是Android *** 作系统使用的一种应用程序包文件格式,用于分发和安装移动应用及中间件。
APK文件是一个只能被Android系统所识别的文件,无法被IOS系统识别。
IOS系统下载软件需要通过App Store(苹果)、TestFlight(苹果)、爱思助手(第三方)等平台才能进行下载、安装。
APK介绍:
一个Android应用程序的代码想要在Android设备上运行,必须先进行编译,然后被打包成为一个被Android系统所能识别的文件才可以被运行,而这种能被Android系统识别并运行的文件格式便是“APK”。
apk反编译就是通过使用apk编译工具,将apk文件中的源文件和资源反编译出来,得到的源文件和资源文件可以进行处理后再进行编译,以达到个性化定制、汉化apk等目的。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)