检测安卓中的主页按钮的按下
这个例子演示了如何检测安卓中的主页按钮
步骤 1 − 在 Android Studio 中建立一个新项目,点击 File ⇒ New Project 然后填写所有必要详细信息来创建新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_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 = "match_parent" android:gravity = "center" android:layout_height = "match_parent"> <TextView android:id = "@+id/text" android:layout_width = "fill_parent" android:gravity = "center" android:textSize = "30sp" android:layout_height = "wrap_content" android:text = "Click here" /> </LinearLayout>
在以上代码中,我们使用了一个文本视图。
步骤 3 − 将以下代码添加到 src/MainActivity.java 中
package com.example.myapplication; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends Activity { TextView text; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); text = findViewById(R.id.text); text.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { onUserLeaveHint(); } }); } @Override protected void onUserLeaveHint() { text.setText("Home buton pressed"); Toast.makeText(MainActivity.this,"Home buton pressed",Toast.LENGTH_LONG).show(); super.onUserLeaveHint(); } }
我们来尝试运行你的应用吧。我假设你已经在电脑上连接了真正的安卓移动设备。要在 Android Studio 中运行此应用,打开项目的一个活动文件并点击工具栏上的运行 图标。选择你的移动设备,然后检查你的移动设备,它将会显示你的默认屏幕 –
现在点击主页按钮,结果将会是这样
广告