在触摸“主活动”中的任意位置时启动“活动”



我是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作为目标。请帮忙!

<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>

然后在CCD_ 2中的louch监听器上设置CCD_

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

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

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

你可以在这里阅读更多关于的信息

当您将侦听器连接到某个对象时,该侦听器将工作。正如我所看到的,您已经实现了onTouchListener,但还没有将该监听器附加到任何东西上。通过findViewById获取对你的关系布局的引用,或者获取你的活动的decreview,并将你的听众连接到该视图。例如:

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

我建议将android:id="@+id/myParentLayout"添加到xml布局父项中,然后在该视图上使用OnTouchListener。您可以在http://developer.android.com/reference/android/view/View.OnTouchListener.html这应该能完成任务。

.....
// 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

相关内容

  • 没有找到相关文章

最新更新