2

Android 開発者ページには、onTouch は API レベル 1 の一部であり、API レベル 17 を使用していると書かれています (同様の質問に対する他のスタック オーバーフローの回答では、アプリケーションで必要なすべてのパッケージを確実に利用できるように API レベルを上げることを提案しています)。

これが私の activity_main.xml コードです:(最初の ImageView はエラーのあるものです)

<?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"
    android:orientation="horizontal" 
    android:paddingLeft="16dp"
    android:paddingRight="16dp">
    <ImageView
        android:id="@+id/myimage"
        android:layout_width="500dp"
        android:layout_height="500dp"
        android:layout_alignLeft="@+id/edit_message"
        android:layout_alignParentTop="true"
        android:src="@drawable/graph" 
        android:onTouch="listenTouch"/>

    <EditText
        android:id="@+id/edit_message"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:ems="10"
        android:hint="@string/edit_message" >

        <requestFocus />
    </EditText>

    <!-- <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/button_send" 
        android:onClick="sendMessage"
        android:layout_toLeftOf= "@id/edit_message"/> -->
 <!--    <Button
        android:id="@+id/btnChangeImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Change Image" /> -->

    <Button
        android:id="@+id/button1"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:text="@string/button_send" 
        android:onClick="sendMessage"/>



    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="18dp"
        android:text="Submit Points" 
        android:onClick="beginTSP"/>

</RelativeLayout>

<!-- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp" >

</RelativeLayout> -->

これは私の MainActivity.Java コードです:

package com.myfirstproject.test;
import java.util.ArrayList;

import client.*;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebView;
import android.widget.Button;

public class MainActivity extends Activity {
    public final static String EXTRA_MESSAGE = "com.myfirstproject.test.MESSAGE";
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    public void sendMessage(View view) {
        Intent intent = new Intent(this, DisplayMessageActivity.class);
        EditText editText = (EditText) findViewById(R.id.edit_message);
        String message = editText.getText().toString();
        intent.putExtra(EXTRA_MESSAGE, message);
        startActivity(intent);
        }
    public void listenTouch(View v,MotionEvent event){
        int x = (int)(event.getX());
        int y = (int)(event.getY());
        City tempCity = new City(x,y);
        TourManager.addCity(tempCity);
        //return true;
    }
    public void beginTSP(View v){
        Intent intent = new Intent(this, DisplayMessageActivity.class);
        String message = "0";
        intent.putExtra(EXTRA_MESSAGE, message);
        startActivity(intent);
    }
}

私が気づいたのは、「onTouch」を「onClick」に変更するとエラーが消えることです(onClickは引数としてMotionEventを取るlistenTouchを呼び出しますが、onClickはViewのみを引数として受け入れるため、別のエラーが発生します)。

SDK を更新し、最小 API を 17 に、ターゲット API を 17 に設定しました。また、Android 4.2.2 を使用していることも確認しました (プロジェクトを右クリックして [プロパティ] をクリックし、 Android をクリックすると、Android 4.2.2 が選択されました)。

私のコンパイラ準拠レベルは 1.6 です。興味深いことに、変更しようとすると、「Android wants compiler Compliance 5.0 or 6.0, yours is 1.7」のようなエラーが表示されたので (それよりも形式的なものでしたが、基本的にはそうでした)、更新できませんでした。私のコンパイラは 1.7 に準拠していますが、これにより onTouch が正しく機能しなくなる理由がわかりません。

参考までに、ここに私の Android マニフェスト ファイルを示します。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myfirstproject.test"
    android:versionCode="1"
    android:versionName="1" >
    <uses-sdk
        android:minSdkVersion="17"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.myfirstproject.test.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.myfirstproject.test.DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.myfirstproject.test.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.myfirstproject.test.MainActivity" />
        </activity>
    </application>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <WebView android:id="@+id/pic_view"
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight="1" >
        </WebView>
    </LinearLayout>

</manifest>

ありがとう!

4

2 に答える 2

1

属性android:onTouchが存在しません。OnTouchListenerすべてのビューにセッターメソッドで簡単に追加できる を使えば十分setOnTouchListenerです。

あなたの場合:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    findViewById(R.id.myimage).setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch (View v, MotionEvent event) {
            int x = (int)(event.getX());
            int y = (int)(event.getY());
            City tempCity = new City(x,y);
            TourManager.addCity(tempCity);
            return true;
        }
     });
}
于 2013-06-11T15:59:01.247 に答える