gpt4 book ai didi

java - android 单选按钮接受

转载 作者:太空宇宙 更新时间:2023-11-04 13:57:33 25 4
gpt4 key购买 nike

我的按钮设置颜色有问题。 Set Color是激活选中的RadioButton。例如,选择第一个单选按钮,当您单击“设置颜色”时,背景颜色变为红色。这是我的 Android Studio 代码。

更新

我的应用程序现在的工作流程:

例如,当我单击第一个 RadioButton 时,我的 TextView 背景颜色会自动更改。它跳过了我的“设置颜色”按钮。

我想要的应用程序正在运行。

例如,当我单击第一个 RadioButton 时,然后我接受我的选择,单击“设置颜色”按钮,我的 TextView 背景颜色会发生变化。

XML 文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:orientation="vertical">


<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checkedButton="@+id/czerwonyguzik"
android:gravity="center_horizontal"
android:orientation="horizontal">

<RadioButton
android:id="@+id/czerwonyguzik"
android:layout_width="wrap_content"

android:layout_height="wrap_content"
android:background="@color/Czerwony"
android:onClick="onRadioClicked" />

<RadioButton
android:id="@+id/bialyguzik"
android:layout_width="wrap_content"

android:layout_height="wrap_content"
android:background="@color/White"
android:onClick="onRadioClicked" />

<RadioButton
android:id="@+id/niebieskiguzik"
android:layout_width="wrap_content"

android:layout_height="wrap_content"
android:background="@color/Niebieski"
android:onClick="onRadioClicked" />

</RadioGroup>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:orientation="horizontal">

<Button
android:id="@+id/setcolor"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:text="Set Color" />

<Button
android:id="@+id/cancel"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:onClick="anulacjaopcji"
android:text="Anuluj" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:id="@+id/textwju"
android:layout_width="match_parent"
android:layout_height="101dp"
android:background="@color/red"
android:textColor="@color/White" />


</LinearLayout>


</LinearLayout>

JAVA文件

public class LinearLayout extends ActionBarActivity {

RadioGroup rg;
TextView textView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_linear_layout);
TextView textView = (TextView) findViewById(R.id.textwju);
rg = (RadioGroup) findViewById(R.id.radioGroup);


}

public void onRadioClicked(View view) {
textView = (TextView) findViewById(R.id.textwju);

// czy guzik jest wcisniety
boolean wcisniety = ((RadioButton) view).isChecked();

//sprawdzenie ktory guzik jest wcisniety
switch (view.getId()) {
case R.id.czerwonyguzik:
if (wcisniety)
textView.setBackgroundColor(getResources().getColor(R.color.Czerwony));

break;
case R.id.bialyguzik:
if (wcisniety)
textView.setBackgroundColor(getResources().getColor(R.color.White));
break;
case R.id.niebieskiguzik:
if (wcisniety)
textView.setBackgroundColor(getResources().getColor(R.color.Niebieski));
break;
}

}

public void anulacjaopcji(View view) {
rg.check(R.id.czerwonyguzik);
textView.setBackgroundColor(getResources().getColor(R.color.Czerwony));
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_radio_button, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}
}

最佳答案

尝试以下操作

RadioButton radioButton1, radioButton2, radioButton3;
Button setColorButton, cancelButton;
TextView textwju;

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


radioButton1 = (RadioButton) findViewById(R.id.czerwonyguzik);
radioButton2 = (RadioButton) findViewById(R.id.bialyguzik);
radioButton3 = (RadioButton) findViewById(R.id.niebieskiguzik);
setColorButton = (Button) findViewById(R.id.setcolor);
cancelButton = (Button) findViewById(R.id.cancel);
textwju = (TextView) findViewById(R.id.textwju);



setColorButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

if(radioButton1.isChecked()) {
textwju.setBackgroundColor(getResources().getColor(R.color.blue));
} else if(radioButton2.isChecked()) {
textwju.setBackgroundColor(getResources().getColor(R.color.white));
} else if(radioButton3.isChecked()) {
textwju.setBackgroundColor(getResources().getColor(R.color.red));
}

}
});

cancelButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

radioButton1.setChecked(true);

}
});
}

并且不要忘记从 xml 中的单选按钮中删除 android:onClick="onRadioClicked"

关于java - android 单选按钮接受,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29673323/

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