触摸主要活动中任何位置的活动

时间:2013-12-11 14:03:38

标签: java android eclipse android-activity event-handling

我是Android编程的新手。我创建了一个带有两个活动的应用程序 - 主要活动,然后另一个名为New1。 现在这就是我需要做的。我希望当用户触摸主要活动的任何位置时启动第二个活动。我尝试使用onTouch(),但它不起作用。 以下是MainActivity.java代码:

package com.example.firstapp;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.*;
import android.view.View.OnTouchListener;
import android.view.View.OnClickListener;

public class MainActivity extends Activity implements OnTouchListener {

    @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 boolean onTouch(View v, MotionEvent event) {
      Intent intent = new Intent(this, New1.class);
      startActivity(intent);
        return true;    
    }
}

以下是activity_main.xml布局代码:

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="206dp"
        android:text="Touch Anywhere" />

</RelativeLayout>

我正在使用eclipse并使用Android 4.0作为目标。请帮忙!

4 个答案:

答案 0 :(得分:1)

尝试使用此覆盖方法 如果用户与屏幕交互,则调用此方法。

 public void onUserInteraction() {
    super.onUserInteraction();
   // Call your intent here.
   };

您可以阅读有关此here

的更多信息

答案 1 :(得分:1)

当您将该侦听器附加到某个内容时,侦听器将起作用。我可以看到你已经实现了onTouchListener但没有将该监听器附加到任何东西。通过findViewById获取对relativelayout的引用,或者获取活动的decoreview并将监听器附加到该视图。 例如:

RelativeLayout rl = (RelativeLayout)findViewById(R.id. some id);
rl.setOnTouchListener(this);

答案 2 :(得分:1)

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
     android:id="@+id/relativeLayout1" >

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="206dp"
    android:text="Touch Anywhere" />

</RelativeLayout>

然后在RelativeLayout中的louch listener上设置onCreate,即

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        RelativeLayout layout= (RelativeLayout)findViewById(R.id.relativeLayout1);
        layout.setOnTouchListener(this);
    }

答案 3 :(得分:0)

我建议将android:id="@+id/myParentLayout"添加到xml布局父项,然后在该视图上使用OnTouchListener。您可以在http://developer.android.com/reference/android/view/View.OnTouchListener.html阅读有关OnTouchListener的内容。这应该可以完成工作。

.....
// In onCreate for Activity
  // Find your view , ex: if your parent is a LinearLayout
  LinearLayout mParentLayout = (LinearLayout) findViewById(R.id.myParentLayout);
  myParentLayout.setOnTouchListener(ParentTouchListener);


 } // end onCreate()

 OnTouchListener ParentTouchListener = new OnTouchListener(){
      @Override
      public boolean onTouch(View v, MotionEvent event){

         // Handle Actions if user presses down on screen
         if(event.getAction() == MotionEvent.ACTION_DOWN){

           // Do something

           // Action supported, screen was touched
           return true;
        }

         // default return when touch action is unsupported
         return false;
      }
 };

此外,MotionEvent操作位于http://developer.android.com/reference/android/view/MotionEvent.html