android studio写一个程序使得一个Button在点击后变成第二个Button保持不变,再次点击后又变回第一个按钮
时间: 2023-11-27 11:50:37 浏览: 94
你可以通过设置Button的背景或文本来实现这个功能。
首先,在你的布局文件中定义两个Button,一个是第一个按钮,一个是第二个按钮,但是要将第二个按钮的可见性设置为GONE,即不可见。
接下来,在Java代码中,获取这两个按钮的引用,然后给第一个按钮设置点击事件。在点击事件中,将第一个按钮的可见性设置为GONE,并将第二个按钮的可见性设置为VISIBLE,这样就可以实现点击第一个按钮后变成第二个按钮了。
然后,再给第二个按钮设置点击事件,同样在点击事件中,将第二个按钮的可见性设置为GONE,并将第一个按钮的可见性设置为VISIBLE,这样又可以实现点击第二个按钮后变回第一个按钮了。
示例代码如下:
布局文件:
```xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"
android:visibility="gone"/>
</RelativeLayout>
```
Java代码:
```java
public class MainActivity extends AppCompatActivity {
private Button button1, button2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button1 = findViewById(R.id.button1);
button2 = findViewById(R.id.button2);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
button1.setVisibility(View.GONE);
button2.setVisibility(View.VISIBLE);
}
});
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
button2.setVisibility(View.GONE);
button1.setVisibility(View.VISIBLE);
}
});
}
}
```
这样就可以实现按钮点击后变成另一个按钮的功能了。
阅读全文