编程语言
首页 > 编程语言> > java-触摸主活动中的任何地方启动活动

java-触摸主活动中的任何地方启动活动

作者:互联网

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

然后在onCreate的Louch侦听器上设置RelativeLayout,即

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

标签:eclipse,event-handling,android-activity,java,android
来源: https://codeday.me/bug/20191122/2059300.html