gpt4 book ai didi

android - 相对布局和线性布局

转载 作者:行者123 更新时间:2023-11-30 04:37:47 25 4
gpt4 key购买 nike

如何在按钮中嵌入选项卡布局。我的主要布局是线性布局,但我不知道如何编写主要的 activity.java 类。谁能帮助我开始这就是我的 main.java 代码现在的样子

 import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.content.Intent;


public class Remote_DocActivity extends Activity implements OnClickListener {
/** Called when the activity is first created. */
//private static final String TAG = "Remote_Doc";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View Patient_Button = findViewById(R.id.patientButton);
Patient_Button.setOnClickListener(this);
View Doctor_Button = findViewById(R.id.doctorButton);
Doctor_Button.setOnClickListener(this);
View About_Option = findViewById(R.id.aboutButton);
About_Option.setOnClickListener(this);
View Exit_Option = findViewById(R.id.exit);
Exit_Option.setOnClickListener(this);

}
public void onClick(View v) {
switch (v.getId()) {
case R.id.aboutButton:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
case R.id.exit:
finish();
break;
}
}

}

最佳答案

您可以在 TabActivity 类的帮助下创建选项卡。您可以从 android-wireless-application-development 一书的第 3 单元第 8 章示例中获得帮助。

关于android - 相对布局和线性布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6539330/

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