如何在 Android 中使用 action up 事件?
此示例展示了如何在 Android 中使用 action up 事件。
步骤 1 − 在 Android Studio 中创建新项目,转到文件 ⇒ 新项目并填写所有必需的详细信息以创建新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_main.xml。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:gravity="center" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical"> <TextView android:id="@+id/actionEvent" android:textSize="40sp" android:layout_marginTop="30dp" android:layout_width="wrap_content" android:layout_height="match_parent" /> </LinearLayout>
在上述代码中,我们采用了文本视图来执行 action up 事件。
步骤 3 − 将以下代码添加到 src/MainActivity.java
package com.example.myapplication; import android.annotation.SuppressLint; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v4.view.MotionEventCompat; import android.support.v7.app.AppCompatActivity; import android.view.MotionEvent; import android.view.View; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { TextView textView; @SuppressLint({"RestrictedApi", "ClickableViewAccessibility"}) @RequiresApi(api = Build.VERSION_CODES.N) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView actionEvent = findViewById(R.id.actionEvent); actionEvent.setText("Action UP"); actionEvent.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { int action = MotionEventCompat.getActionMasked(event); if (action == MotionEvent.ACTION_UP) { Toast.makeText(MainActivity.this, "Clicked on textview", Toast.LENGTH_LONG).show(); return true; } return false; } }); } }
我们尝试运行应用程序。我假设你已将实际的安卓手机与电脑连接起来了。要从 Android Studio 运行应用程序,打开其中一个项目的活动文件,然后从工具栏中单击运行 图标。选择你的移动设备作为选项,然后查看显示默认屏幕的移动设备,即
单击此处下载项目代码
广告