gpt4 book ai didi

java - 无法用图像按钮交换 2 个图像

转载 作者:行者123 更新时间:2023-12-02 00:07:40 24 4
gpt4 key购买 nike

我正在尝试,当我单击 ImageButton 时,将 View 和按钮交换为可绘制的其他 View 和按钮

我可以看到带有 TextView、ImageButton 和 Image View 的主要布局。当我单击按钮时,我的应用程序就会关闭。我尝试不同的方法,一切都有效。我应该在 xml 文件上声明 onClick。

MAINACTIVITY.JAVA

package com.example.practica_walter_sin_layouts;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.widget.ImageView;

public class MainActivity extends AppCompatActivity {

private ImageView walter;
private ImageButton telefono;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}


private void llamando(View vista){
walter=findViewById(R.id.walter) ;
telefono =findViewById(R.id.llamar) ;
walter.setImageResource(R.drawable.walterwhite2);
telefono.setImageResource(R.drawable.colgar);


}

}

ACTIVITY_MAIN.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_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/encabezado"
android:layout_width="207dp"
android:layout_height="47dp"
android:text="Puedes llamar a walter white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.096" />

<ImageView
android:id="@+id/walter"
android:layout_width="213dp"
android:layout_height="211dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.779"
app:srcCompat="@drawable/walterwhite" />

<ImageButton
android:id="@+id/llamar"
android:layout_width="106dp"
android:layout_height="116dp"
android:src="@drawable/llamar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.265"
app:srcCompat="@drawable/llamar"
android:onClick="llamando"
/>

</androidx.constraintlayout.widget.ConstraintLayout>

应用程序应该将 View 和按钮交换为另一个 View 和另一个按钮,但始终关闭。没有编译错误

最佳答案

您的方法llamando需要是public

关于java - 无法用图像按钮交换 2 个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58145604/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com