Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidデバイスでタッチ位置を取得するにはどうすればよいですか?


この例は、Androidデバイスでタッチ位置を取得する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context="MainActivity">
   <EditText
      android:layout_width="400dp"
      android:layout_height="wrap_content"
      android:id="@+id/editText"
      android:hint="Points on X-Axis" />
   <EditText
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/editText2"
      android:layout_below="@+id/editText"
      android:layout_alignLeft="@+id/editText"
      android:layout_alignStart="@+id/editText"
      android:hint="Points on Y-Axis"
      android:layout_alignRight="@+id/editText"
      android:layout_alignEnd="@+id/editText" />
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Touch to get co-ordinates"
      android:id="@+id/textview"
      android:focusable="true"
      android:clickable="true"
      android:textSize="20dp"
      android:layout_centerVertical="true"
      android:layout_centerHorizontal="true" />
</RelativeLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package app.com.sample;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   TextView T;
   EditText E1, E2;
   float x = 0f;
   float y = 0f;
   @Override
   protected void onCreate(Bundle savedInstanceState){
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      E1 = (EditText) findViewById(R.id.editText);
      E2 = (EditText) findViewById(R.id.editText2);
      T=(TextView)findViewById(R.id.textview);
      T.setOnTouchListener(new View.OnTouchListener(){
         @Override
         public boolean onTouch(View v, MotionEvent event) {
            final float x = event.getX();
            final float y = event.getY();
            float lastXAxis = x;
            float lastYAxis = y;
            E1.setText(Float.toString(lastXAxis));
            E2.setText(Float.toString(lastYAxis));
            return true;
         }
      });
   }
}

ステップ4 −次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://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: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からアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

Androidデバイスでタッチ位置を取得するにはどうすればよいですか?

Androidデバイスでタッチ位置を取得するにはどうすればよいですか?

プロジェクトコードをダウンロードするには、ここをクリックしてください。


  1. AndroidデバイスでAndroidMarshmallowBootAnimationを取得する方法

    Androidの最新バージョン(Android 6.0 Marshmallowと呼ばれる)はまだAndroidデバイスで実行する準備ができていませんが、そのブートアニメーションをデバイスですぐに動作させることができます。ルート化されたAndroidデバイスでブートアニメーションが利用できるようになり、シンプルなルートエクスプローラーを使用してデバイスにインストールできます。 インストールすると、ストックブートアニメーションがなくなり、デバイスでの魔法のアクションで最新のマシュマロが表示されます。それがあなたにとって良いことであり、デバイスで実行されるのを待つことができない場合は、次の方法でそ

  2. ルート化せずに Android デバイスで 3D タッチを取得する方法

    3D タッチは、iPhone 6s 以降の素晴らしい機能です。これらのデバイスには力センサーが装備されているため、Apple はこれらのデバイスにこの機能を組み込みました。つまり、アプリケーション アイコンを強く押すと、新しいアクセシビリティ オプションが表示されます。これは、その機能を使用するためにアプリケーションを起動する必要がないことを意味します。これにより、アプリを長押しするだけですばやくアプリをアンインストールできます。 iPhone 6S 以降を使用している友人がこの機能を使用しているのを見たことがあるかもしれません。この機能はどの Android デバイスでも使用でき、ルート化せ