如何在Android应用程序中单击按钮以打开第二个活动

我正在学习构建android应用程序,我需要一些具体帮助。我似乎无法确定需要更改哪些模板代码位,以及哪些位是静态的。


在LAYOUT文件夹中,我的ACTIVITY_MAIN.XML内容如下:


 <?xml version="1.0" encoding="utf-8"?>

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


 <Button

    android:id="@+id/button1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:text="@string/main_buttons_photos" />


 </LinearLayout>

接下来,我有我的第二个活动ACTIVITY_SEND_PHOTOS.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" >


 <TextView

    android:id="@+id/textView2"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_centerHorizontal="true"

    android:layout_centerVertical="true"

    android:text="@string/hello_world"

    tools:context=".SendPhotos" />


 <TextView

    android:id="@+id/textView1"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_alignParentLeft="true"

    android:layout_alignParentTop="true"

    android:text="@string/title_activity_send_photos"

    android:textAppearance="?android:attr/textAppearanceLarge" />


 </RelativeLayout>

然后,我有了MainActivity.java(这是.class吗?),它读取了com.example.assent.bc包;


 import android.os.Bundle;

 import android.app.Activity;

 import android.view.Menu;

 import android.view.View;


 public class MainActivity extends Activity {


 @Override

 public void onCreate(Bundle savedInstanceState) {

     super.onCreate(savedInstanceState);

     setContentView(R.layout.activity_main);

 }


我希望主活动中的按钮可以链接到我的sendphotos活动,只需打开该活动,不要花哨,不发送任何数据或任何东西。


我知道我需要我的地方


 Intent i = new Intent(FromActivity.this, ToActivity.class);

 startActivity(i);

但我不知道用什么替换ToActivity.class或在其他地方需要什么。


森栏
浏览 425回答 3
3回答

不负相思意

来自活动:您目前在哪里?活动:您想去哪里?Intent i = new Intent( MainActivity.this, SendPhotos.class);&nbsp;startActivity(i);两个活动都必须包含在清单文件中,否则将找不到类文件并强制关闭。编辑您的Mainactivity.javacrate button's object;现在为click事件编写代码。&nbsp; &nbsp; &nbsp; &nbsp; Button btn = (button)findViewById(R.id.button1);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;btn.LoginButton.setOnClickListener(new View.OnClickListener()&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @Override&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void onClick(View v)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//put your intent code here&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp;});希望它对您有用。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android