我正在尝试为大学项目创建一个简单的应用程序,它变得令人沮丧。每次我更正错误6更多弹出。有人可以帮助我。
这个盒子要求更多信息......所以基本上我想创建4个活动,主要,年龄4到10岁,年龄11到15岁,年龄15到18岁。我需要能够点击按钮并从Main.class
调用相关活动。但每次我调试我都会收到错误,我根本就不明白如何修复。
每个活动都将托管一个微调器,其中包含用户选择的类别中的玩具选择。 (甚至不让我开始使用纺纱工)
我希望用户不要编辑我的帖子,因为我认为这里的所有信息都与我遇到的问题有关。暂且不说......我只有很少的Java培训,所以我需要你可能需要提供的更正示例。
感谢。
package com.example.android.skillsdemoVT;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button button1;
Button button2;
Button button3;
@Override
/* button1 */
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
View viewById;
viewById = findViewById(R.id.button1);
button1.setOnClickListener(this);
}
@Override
public void onClick1(View v)
{
{
button1click1();
}
}
public void button1click1()
{
startActivity(new Intent(MainActivity.this, age4to10.class));
}
/* Button2 */
public void onClick2(View v)
{
setContentView(R.layout.activity_main);
View viewById;
viewById = findViewById(R.id.button2);
button2.setOnClickListener(this);
}
public void button2click1()
{
{
button2click1();
}
}
public void()
{
{
startActivity(new Intent(MainActivity.this, age11to15.class));
}
}
/* button3 */
public void onClick3(View v)
{
setContentView(R.layout.activity_main);
View viewById;
viewById = findViewById(R.id.button3);
button3.setOnClickListener(this);
}
@Override
public void onClick(View v) {
{
button3click1();
}
}
public void button3click1()
{
startActivity(new Intent(MainActivity.this, age15to18.class));
}
}
MY XML
<?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: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">
<ImageView
android:id="@+id/tree1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/tree1"/>
<TextView
android:id="@+id/welcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="85dp" android:text="Welcome to Santa's workshop."
android:textColor="#ffffff"
android:textSize="25sp"/>
<TextView
android:id="@+id/instructions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Please let Santa know how old you are!"
android:textColor="#ffffff"
android:textSize="25sp"
android:layout_marginTop="43dp"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/welcome"
android:layout_alignEnd="@+id/welcome" />
<Button
android:id="@+id/button1"
android:layout_width="120dp"
android:layout_height="120dp"
android:background="#b12b2b"
android:textColor="#ffffff"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:text="Age 4-10"
android:textSize="30sp"
android:onClick="age4to10"/>
<Button
android:id="@+id/button2"
android:layout_width="120dp"
android:layout_height="120dp"
android:background="#b12b2b"
android:textColor="#ffffff"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/button1"
android:text="Age 11-14"
android:textSize="30sp"
android:onClick="age11to15"/>
<Button
android:id="@+id/button3"
android:layout_width="120dp"
android:layout_height="120dp"
android:background="#b12b2b"
android:textColor="#ffffff"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/button2"
android:text="Age 15-17"
android:textSize="30sp"
android:onClick="age15to18"
/>
/>
</RelativeLayout>
答案 0 :(得分:0)
尝试:
Intent intent = new Intent(storedActivity, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
storedActivity.startActivity(intent);
this.finish();