如何在 Android 中檢測長按?


此示例演示如何檢測 Android 中的長按。

步驟 1 - 在 Android Studio 中建立新專案,轉到檔案 ⇒ 新專案並填寫所有必需的詳細資訊來建立新專案。

步驟 2 - 將以下程式碼新增到 res/layout/activity_main.xml。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      android:textStyle="bold"
      android:text="Hold touch to detect Long Press"/>
</RelativeLayout>

步驟 3 - 將以下程式碼新增到 src/MainActivity.java

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
   GestureDetector gestureDetector;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      gestureDetector = new GestureDetector(this, new GestureListener());
   }
   private class GestureListener extends GestureDetector.SimpleOnGestureListener {
      @Override
      public void onLongPress(MotionEvent e) {
         super.onLongPress(e);
         Toast.makeText(MainActivity.this, "Long pressed", Toast.LENGTH_SHORT).show();
      }
   }
   public boolean onTouchEvent(MotionEvent event) {
      gestureDetector.onTouchEvent(event);
      return super.onTouchEvent(event);
   }
}

步驟 4 - 將以下程式碼新增到 androidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

讓我們嘗試執行你的應用程式。我相信你已將你的實際 Android 移動裝置與計算機連線。要從 Android Studio 執行應用程式,請開啟一項專案的活動檔案,然後從工具欄中單擊 執行 播放圖示  圖示。選擇你的移動裝置作為選項,然後檢查你的移動裝置,它將顯示你的預設螢幕 -

單擊此處下載專案程式碼。

更新於: 2020-07-03

1 千+ 瀏覽

開啟您的職業生涯

透過完成課程獲得認證

開始
廣告
© . All rights reserved.