- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 TableLayout,其中有四个 TableRows
,四行中的每一行都有四个按钮。我在使用不同的屏幕分辨率时遇到了很大的问题,所以我新建了布局文件。
首先,我给你我的代码:
public class MainActivity extends Activity {
Button b,b2,b3,b4, b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15,b16,b17,b18,b19,b20;
//b21,b22,b23,b24;
ArrayList<Button> arr = new ArrayList<Button>();
MediaPlayer mp;
Button aktuell;
TextView tv;
String playtone ="";
String shouldvibra ="";
TextView tvPunktestand;
int count = 0;
CountDownTimer countdown;
CountDownTimer eins;
CountDownTimer zwei;
CountDownTimer drei;
AlertDialog.Builder alertDialog;
boolean einsstarted = false;
boolean zweistarted = false;
boolean dreistarted = false;
boolean countdownstarted = false;
SharedPreferences app_preferences;
Vibrator vibe;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vibe = (Vibrator) this.getSystemService(this.VIBRATOR_SERVICE) ;
b = (Button) findViewById(R.id.button1);
b2 = (Button) findViewById(R.id.button2);
b3 = (Button) findViewById(R.id.button3);
b4 = (Button) findViewById(R.id.button4);
b5 = (Button) findViewById(R.id.button5);
b6 = (Button) findViewById(R.id.button6);
b7 = (Button) findViewById(R.id.button7);
b8 = (Button) findViewById(R.id.button8);
b9 = (Button) findViewById(R.id.button9);
b10 = (Button) findViewById(R.id.button10);
b11 = (Button) findViewById(R.id.button11);
b12 = (Button) findViewById(R.id.button12);
b13 = (Button) findViewById(R.id.button13);
b14 = (Button) findViewById(R.id.button14);
b15 = (Button) findViewById(R.id.button15);
b16 = (Button) findViewById(R.id.button16);
b17 = (Button) findViewById(R.id.button17);
b18 = (Button) findViewById(R.id.button18);
b19 = (Button) findViewById(R.id.button19);
b20 = (Button) findViewById(R.id.button20);
// b21 = (Button) findViewById(R.id.button21);
// b22 = (Button) findViewById(R.id.button22);
//b23 = (Button) findViewById(R.id.button23);
// b24 = (Button) findViewById(R.id.button24);
//tvPunktestand = (TextView) findViewById(R.id.tvPunktewaehrend);
// b2.setVisibility(View.GONE);
// b3.setVisibility(View.GONE);
// b4.setVisibility(View.GONE);
// b5.setVisibility(View.GONE);
// b6.setVisibility(View.GONE);
// b7.setVisibility(View.GONE);
// b8.setVisibility(View.GONE);
// b9.setVisibility(View.GONE);
// b10.setVisibility(View.GONE);
// b11.setVisibility(View.GONE);
// b12.setVisibility(View.GONE);
// b13.setVisibility(View.GONE);
// b14.setVisibility(View.GONE);
// b15.setVisibility(View.GONE);
// b16.setVisibility(View.GONE);
// b17.setVisibility(View.GONE);
// b18.setVisibility(View.GONE);
// b19.setVisibility(View.GONE);
// b20.setVisibility(View.GONE);
// b21.setVisibility(View.GONE);
// b22.setVisibility(View.GONE);
// b23.setVisibility(View.GONE);
// b24.setVisibility(View.GONE);
arr.add(b);
arr.add(b2);
arr.add(b3);
arr.add(b4);
arr.add(b5);
arr.add(b6);
arr.add(b7);
arr.add(b8);
arr.add(b9);
arr.add(b10);
arr.add(b11);
arr.add(b12);
arr.add(b13);
arr.add(b14);
arr.add(b15);
arr.add(b16);
arr.add(b17);arr.add(b18);
arr.add(b19);
arr.add(b20);
//arr.add(b21);
//arr.add(b22);arr.add(b23);
//arr.add(b24);
int boeserzufall = (int) (Math.random()*23);
Button boese = arr.get(boeserzufall);
arr.get(boeserzufall).setBackgroundResource(R.drawable.williboese);
arr.get(boeserzufall).setTag(R.drawable.williboese);
System.out.println("AAAAAAAAAAAAAAAAAAAAAA: " + boese.getTag());
alertDialog = new AlertDialog.Builder(this);
alertDialog.setTitle("Countdown - gleich geht´s los");
alertDialog.setMessage("");
alertDialog.setCancelable(false);
final AlertDialog ag = alertDialog.show();
final TextView myMsg = (TextView)ag.findViewById(android.R.id.message);
myMsg.setGravity(Gravity.CENTER);
ag.show();
countdown = new CountDownTimer(4000, 1000) {
@Override
public void onTick(long millisUntilFinished) {
countdownstarted = true;
shared_check();
shouldvibra = app_preferences.getString("vibra", "Fehler");
myMsg.setText(" " + (millisUntilFinished) / 1000);
if(shouldvibra.equals("j") || shouldvibra == null){
vibe.vibrate(100);
}
}
@Override
public void onFinish() {
ag.dismiss();
playtone = app_preferences.getString("ton", "Fehler");
if(playtone.equals("j") || playtone == null){
playmusic();
}
eins = new CountDownTimer(10000, 790) {
@Override
public void onTick(long millisUntilFinished) {
for(int i = 0; i< arr.size(); i++){
Button aga = arr.get(i);
if(aga.getVisibility() == View.VISIBLE){
aga.setVisibility(View.GONE);
}
}
einsstarted = true;
int zufall = (int) (Math.random()*19);
setNextButton(arr.get(zufall));
//tvPunktestand.setText("" + count);
System.out.println("HHH");
}
@Override
public void onFinish() {
//Intent highscore = new Intent (MainActivity.this, Highscore_eintragen.class);
// highscore.putExtra("count", count);
// startActivity(highscore);
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
zwei = new CountDownTimer(10000, 550) {
@Override
public void onTick(long millisUntilFinished) {
for(int i = 0; i< arr.size(); i++){
Button aga = arr.get(i);
if(aga.getVisibility() == View.VISIBLE){
aga.setVisibility(View.GONE);
}
}
zweistarted = true;
int zufall = (int) (Math.random()*19);
setNextButton(arr.get(zufall));
//tvPunktestand.setText("" + count);
System.out.println("HHH");
}
@Override
public void onFinish() {
// Intent highscore = new Intent (MainActivity.this, Highscore_eintragen.class);
//highscore.putExtra("count", count);
//startActivity(highscore);
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
drei = new CountDownTimer(10000, 350) {
@Override
public void onTick(long millisUntilFinished) {
for(int i = 0; i< arr.size(); i++){
Button aga = arr.get(i);
if(aga.getVisibility() == View.VISIBLE){
aga.setVisibility(View.GONE);
}
}
dreistarted = true;
int zufall = (int) (Math.random()*19);
setNextButton(arr.get(zufall));
//tvPunktestand.setText("" + count);
System.out.println("HHH");
}
@Override
public void onFinish() {
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
Intent highscore = new Intent (MainActivity.this, NachdemSpiel.class);
highscore.putExtra("count", count);
startActivity(highscore);
beenden();
}
}.start();
}
}.start();
}
}.start();
}
}.start();
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b2.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b3.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b4.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b5.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b6.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b6.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b7.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b7.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b8.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b8.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b9.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b9.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b10.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b10.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b11.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b11.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b12.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b12.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b13.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b13.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b14.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b14.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b15.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b15.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b16.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b16.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b17.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b17.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b18.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b18.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b19.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b19.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
b20.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//b20.setBackgroundColor(R.color.redwue);
count++;
if(shouldvibra.equals("j")){
vibrieren();
}
if(arg0.getTag() != null) {
count = 0;
showmessage();
}
}
});
// b21.setOnClickListener(new View.OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// //b20.setBackgroundColor(R.color.redwue);
// count++;
// if(shouldvibra.equals("j")){
// vibrieren();
// }
// if(arg0.getTag() != null) {
// count = 0;
// showmessage();
// }
// }
// });
// b22.setOnClickListener(new View.OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// //b20.setBackgroundColor(R.color.redwue);
// count++;
// if(shouldvibra.equals("j")){
// vibrieren();
// }
// if(arg0.getTag() != null) {
// count = 0;
// showmessage();
// }
// }
// });
// b23.setOnClickListener(new View.OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// //b20.setBackgroundColor(R.color.redwue);
//
// count++;
// if(shouldvibra.equals("j")){
// vibrieren();
// }
// if(arg0.getTag() != null) {
// count = 0;
// showmessage();
// }
// }
// });
// b24.setOnClickListener(new View.OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// //b20.setBackgroundColor(R.color.redwue);
//
// count++;
// if(shouldvibra.equals("j")){
// vibrieren();
// }
// if(arg0.getTag() != null) {
// count = 0;
// showmessage();
// }
// }
// });
}
@Override
public void onBackPressed() {
System.out.println("asdhaskjdhaskjdhakjsdhkjasdhkjahsdkjashdkjh");
Intent i = new Intent(MainActivity.this, MainMenu.class);
startActivity(i);
if( countdownstarted == true){
countdown.cancel();
}
if(einsstarted == true){
eins.cancel();
if(playtone.equals("j")){
stopmusic();
}
}
if(zweistarted == true){
zwei.cancel();
if(playtone.equals("j")){
stopmusic();
}
}
if(dreistarted == true){
drei.cancel();
if(playtone.equals("j")){
stopmusic();
}
}
this.finish();
}
public void showmessage(){
Toast.makeText(MainActivity.this, "Oh nein... Du hast den Kaktus erwischt! Alle deine Punkte sind wieder weg.", Toast.LENGTH_SHORT).show();
}
public void setNextButton(Button str){
System.out.println("&&&&&&&&&&& SETNEXTBUTTON");
//str.setVisibility(ImageButton.GONE);
int buttonid = str.getId();
int buttonname = str.getId();
//String buttonneu = "button" + zufall;
System.out.println("&&&&&&&&&&&" + getResources().getResourceEntryName(buttonid));
int[] buttonIds = {R.id.button1, R.id.button2, R.id.button3, R.id.button4, R.id.button5, R.id.button6, R.id.button7, R.id.button8,
R.id.button9, R.id.button10, R.id.button11, R.id.button12, R.id.button13, R.id.button14, R.id.button15, R.id.button16 ,
R.id.button17, R.id.button18, R.id.button19, R.id.button20};
//,R.id.button21, R.id.button22, R.id.button23, R.id.button24
//Button bnew = (Button) findViewById(buttonIds[zufall]);
//Toast.makeText(this, "$ " + getResources().getResourceEntryName(bnew.getId()), Toast.LENGTH_LONG).show();
//if(bnew.getId() == str.getId()){
// bnew = (Button) findViewById(buttonIds[zufall]);
//}
str.setVisibility(View.VISIBLE);
//b.setEnabled(enabled)
}
public void beenden(){
this.finish();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void playmusic(){
mp = MediaPlayer.create(getApplicationContext(), R.raw.music);
mp.start();
}
public void stopmusic(){
mp.stop();
}
public boolean shared_check(){
boolean gibtswelche = false;
String name;
app_preferences = getSharedPreferences("wuestenfest", 0);
SharedPreferences.Editor editor = app_preferences.edit();
String tonvalue = app_preferences.getString("ton",null);
String vibravalue = app_preferences.getString("vibra", null);
if (tonvalue == null && vibravalue == null) {
System.out.println(" Keine Shared Preferences gefunden");
} else {
app_preferences.getString("ton", "testasd");
System.out.println("Shared Preferences gefunden");
gibtswelche = true;
}
return gibtswelche;
}
public void vibrieren(){
vibe.vibrate(50);
}
}
如您所见,我的目标是设置一个按钮可见而其他按钮不可见。每隔几毫秒,这应该改变。
这是我的布局文件:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@drawable/bg"
android:stretchColumns="0,1,2,3,4,5"
tools:context=".MainActivity" >
<TableRow
android:id="@+id/tableRow1"
android:paddingTop="22dp"
android:layout_weight="1">
<Button
android:id="@+id/button1"
android:text="1"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button2"
android:text="2"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button3"
android:text="3"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button4"
android:text="4"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_weight="1"
>
<Button
android:id="@+id/button5"
android:text="1"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button6"
android:text="2"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button7"
android:text="3"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
<Button
android:id="@+id/button8"
android:text="4"
android:layout_marginLeft="10dp"
android:background="@drawable/willi">
</Button>
</TableRow>
and so on....
</TableLayout>
问题是,如果一个按钮是 Activity 的,它看起来像这样:
按钮彼此叠放,它们被很好地拉伸(stretch)了。
所以,我测试了将所有按钮设置为在开始时可见,然后它看起来像这样(它应该是什么样子 - 所有按钮都在另一个旁边):
我的代码怎么可能改变我的布局文件?
最佳答案
How is that possible that my code changes my layout file?
它不是。 resource
文件无法在运行时更改。
看起来正在发生的事情是您将它们设置为GONE
,这样它将占用的空间可供其他Button
使用。与其将它们设置为 GONE
,不如尝试将它们设置为 INVISIBLE
。这样空间仍然会被占用,但不会显示。
只是一个建议,但您可以在 xml 中设置 visibility
,这将清理您的 Java 文件。这只是一种偏好,但我可能会这样做。还有,
/*
some comments
some other comments
*/
是如何做 block 评论。
关于android - 代码似乎改变了我的布局文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21648948/
我为 S3 做了一个额外的布局(所有布局的反叛),人们说,使用 layout-sw320dp 对 s3 有好处。一切正常,s3 选择了这个文件夹,布局在 s3 上看起来很棒。 但是当我尝试在 10"平
我是 CSS 的新手,我正在尝试创建一个 3 列布局。也应该有一个居中的页脚。页面的总高度应该填满当前的屏幕。宽度似乎不对。 目前,页脚在尺寸和位置上似乎都没有对齐。 I have attached
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭10 年前。 Improve th
有没有办法确定设备是从右到左的语言(比如阿拉伯语)而不是从左到右的语言(英语)? 需要与旧 API 级别(低至 10)兼容的东西 解决方案 我最终在接受的答案中使用了 xml 方法。更进一步,我还添加
我是 QT 的新手。我试图通过实现下面看到的这个小窗口来理解布局机制。它在作为主窗口的 QWidget 下具有以下元素: 一个延伸到所有客户区域的大型 QWidget。 窗口顶部的两个 QWidget
Accordion 布局是堆叠面板布局,因为此时只有一个面板可见,但我想同时显示两个面板可见,所以我们可以使用 Accordion 面板来做到这一点吗?? 最佳答案 您不能扩展现有的 Accordio
我只是想知道,作为一个假设示例,针对以下场景布局表格的最佳方式是什么: 假设我正在编写一个用于跟踪学生出勤的应用程序。每年年初,我都想添加所有学生(我将手动执行此操作 - 现在,是否应该为这里的每个学
在 CVS 中,我们的项目中有多个目录。 有一个夜间构建,它必须从同一个 CVS 项目的不同目录中提取东西才能构建夜间构建。所以我应该记住这一点,如果我们迁移到 SVN,我必须修改构建脚本以从不同的存
我在 WPF Windows 上有几个列表框,带有 Height="Auto" Width="Auto"在表格上设置 表单大小在不同分辨率下完美匹配,但问题是当我按下最大化按钮时,在表单调整大小时会看
仅供引用,我是 WPF 的新手。 我正在我的 WPF 应用程序中创建一个侧边栏并想要圆角。我学到的不是可以附加到网格的属性。另外,我尝试将文本块放在边框控件中,但我收到的错误消息说“ child 只能
我是CodeIgniter的新手。我想使用包含菜单,页脚等的基本样式创建母版页或布局。我不想在所有页面中编写重复的内容并为所有页面自动加载。例如,我可以在asp.net中创建母版页,或者在asp.ne
我正在使用它来调试应用程序。调试的时候发现底部显示了一个窗口中变量的值,如图- 但是,当我显示表达式时,我得到这样的布局 - 我的问题是,是否可以更改变量窗口的布局也可以在右侧显示值,因为这对我来说很
上面的代码中,放置“as=”footer_links”是什么意思? 最佳答案 as="x" 语法定义模板可用来调用 block 的名称。因此,对于以下内容: 在outer_block.p
我试图编写一个检查注册表值的功能,以查看Windows上的控制台是否启用了颜色。 Computer\HKEY_CURRENT_USER\Console\VirtualTerminalLevel 如果您
我有一个布局,但无法提前定义其所有区域,因为它们是未知的。 稍后创建了 ItemView,我想使用 View 的 ID 作为区域名称在布局中创建一个新区域,这样我就可以说: layout.dynami
我们有一个相当复杂的 gulp 构建过程,涉及多个模块,每个模块都有一个或两个 watch 。我想在一个仪表板中监控这一点,如下所示: 每一列都是一个模块,列内的每一行都是后续的构建步骤。一旦第 1
这就是问题所在,我有一个 MainWindow 类,它在一个设置例程中扩展了 JFrame,我将该类的布局设置为新的 CardLayout()。这一切都工作正常,但是当我从 JFrame 请求布局并将
我正在制作一个简单的迷宫程序,用户可以在其中创建墙壁、路径、起点和终点,单击“解决”,迷宫将被解决。为此,我有一个大小为 640x480 的 java JFrame。在 JFrame 的左侧,我有一个
我正在使用它来调试应用程序。调试的时候发现底部显示了一个窗口中变量的值,如图- 但是,当我显示表达式时,我得到这样的布局 - 我的问题是,是否可以更改变量窗口的布局也可以在右侧显示值,因为这对我来说很
我已经编写了使用 VBox 作为布局的代码。我希望按钮出现在顶行,然后绘制 2 条水平线,在 400x400 场景中应位于 y=200 和 300 处。但输出显示了我给出的不同坐标处的线条。 我知道这
我是一名优秀的程序员,十分优秀!