通向同一活动的两个按钮

Posted

技术标签:

【中文标题】通向同一活动的两个按钮【英文标题】:Two buttons leading to the same activity 【发布时间】:2020-08-01 16:33:15 【问题描述】:

我在尝试使用 android 中的两个不同按钮调用两个不同的活动时遇到问题。

尽管两个按钮应该调用不同的活动,但它们会指向同一个(Statistics.class)。

这是我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity">

    <FrameLayout
        android:layout_
        android:layout_
        android:background="@color/colorPrimary"
        android:layout_marginBottom="128dp"
        app:layout_constraintBottom_toTopOf="@+id/startBtn"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
        <LinearLayout
            android:layout_
            android:layout_
            android:orientation="vertical"
            android:gravity="center">

            <androidx.appcompat.widget.AppCompatImageView
                android:id="@+id/tum_logo"
                android:layout_
                android:layout_
                android:src="@drawable/tum_logo">
            </androidx.appcompat.widget.AppCompatImageView>

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="center"
                android:layout_marginTop="10dp"
                android:text="das Quiz"
                android:textColor="@android:color/white"
                android:textSize="42dp"
                android:textStyle="bold" />

        </LinearLayout>
    </FrameLayout>

    <Button
        android:id="@+id/startBtn"
        android:layout_
        android:layout_
        android:layout_marginBottom="32dp"
        android:background="@drawable/btn_rounded_corners"
        android:backgroundTint="@color/colorPrimary"
        android:text="Quiz starten"
        android:textColor="@android:color/white"
        android:textStyle="bold"
        android:onClick="onClick"
        app:layout_constraintBottom_toTopOf="@+id/statisticsBtn"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <Button
        android:id="@+id/statisticsBtn"
        android:layout_
        android:layout_
        android:layout_marginBottom="64dp"
        android:text="Statistiken"
        android:textStyle="bold"
        android:background="@drawable/btn_rounded_corners"
        android:backgroundTint="#8A8A8A"
        android:textColor="@android:color/white"
        android:onClick="onClick"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

这是对应的Java代码:

public class MainActivity extends AppCompatActivity implements View.OnClickListener 
    Button startBtn, statisticsBtn;
    Intent intent = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        startBtn = (Button) findViewById(R.id.startBtn);
        statisticsBtn = (Button) findViewById(R.id.statisticsBtn);
    

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) 
        if(keyCode == KeyEvent.KEYCODE_BACK)
            System.exit(0);
            return true;
        
        return super.onKeyDown(keyCode, event);
    

    @Override
    public void onClick(View v) 
        switch (v.getId())
            case R.id.startBtn:
                intent = new Intent(this, Semester.class);
                startActivity(intent);
                Toast.makeText(this, "startBtn", Toast.LENGTH_SHORT).show();
                this.finish();
            case R.id.statisticsBtn:
                intent = new Intent(this, Statistics.class);
                startActivity(intent);
                Toast.makeText(this, "statisticsBtn", Toast.LENGTH_SHORT).show();
                this.finish();
        
    

toast表示点击startBtn后statisticsBtn也被点击了,但我不明白为什么。

【问题讨论】:

在每个case之后添加break 【参考方案1】:

您忘记在案例结束后添加break;

switch (v.getId())
            case R.id.startBtn:
                intent = new Intent(this, Semester.class);
                startActivity(intent);
                Toast.makeText(this, "startBtn", Toast.LENGTH_SHORT).show();
                this.finish();
                break;
            case R.id.statisticsBtn:
                intent = new Intent(this, Statistics.class);
                startActivity(intent);
                Toast.makeText(this, "statisticsBtn", Toast.LENGTH_SHORT).show();
                this.finish();
                break;
        

【讨论】:

以上是关于通向同一活动的两个按钮的主要内容,如果未能解决你的问题,请参考以下文章

Android Activity:定期更新来自同一数据源的两个活动文本

如何使用两个按钮更改活动背景? [复制]

同一个活动Android Studio中的两个JSON解析方法

使用两个两个活动创建 Android PDF 文件

AIDL

如何通过单击两个按钮在单个活动中在 RecyclerView 和 ListView 之间切换?