2

android 开发者页面说 onTouch 是 API 级别 1 的一部分,而我使用的是 API 级别 17(其他类似问题的 stackoverflow 回答建议提高 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 需要编译器合规性 5.0 或 6.0,你的是 1.7”(它比这更正式,但基本上是这样说的),所以我无法更新我的编译器符合 1.7,但我不明白为什么这会导致 onTouch 无法正常工作?

如果它有用,这是我的 Android Manifest 文件:

<?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可以通过 setter 方法轻松添加到每个视图中就足够了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 回答
0

该属性不存在,与SDK或关卡无关。如果事件被处理则为真,否则为假。

于 2013-12-12T06:17:27.957 回答