我可以从左向右更改单选按钮位置。我的意思是绿色选中按钮位于右侧,文本位于左侧。可能吗? (默认按钮向左,文本右侧)
答案 0 :(得分:0)
应该可以使用getCompoundDrawables()和setCompoundDrawables()来重新排列文本周围的drawable。
更进一步,也许您可以基于CheckBox实现自己的CheckBoxRight小部件,它在调用super.onDraw()之后在onDraw()方法中执行。
最后一种方法是直接从TextView构建自己的小部件,并在从onClick()事件处理程序维护内部状态后适当地设置setCompoundDrawables()。
答案 1 :(得分:0)
RadioButtons不像你(或几乎所有人)想要的那样灵活。您可以构建自己的自定义窗口小部件,如果您不熟悉这些窗口小部件,则可能会令人生畏。或者你可以做我最喜欢的解决方法。
将RadioButtons处理为常规按钮 - 不要使用RadioGroup功能。现在你必须手动控制检查。通过消除RadioGroup,您可以随意创建所需的布局。
这是一个示例xml布局,它在TableLayout中使用RadioButtons,左边有文本,每个按钮右边有一个图像:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/row_1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 1" />
<RadioButton
android:id="@+id/rb_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pretty_pic_1" />
</TableRow>
<TableRow
android:id="@+id/row_2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 2" />
<RadioButton
android:id="@+id/rb_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pretty_pic_3" />
</TableRow>
<TableRow
android:id="@+id/row_3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 3" />
<RadioButton
android:id="@+id/rb_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pretty_pic_3" />
</TableRow>
</TableLayout>
但你还没有完成。您现在必须手动处理单选按钮。我喜欢这样做:
class FooActivity extends Activity {
RadioButton m_rb1, m_rb2;
TableRow m_row1, m_row2;
@Override
protected void onCreate(Bundle savedInstanceState) {
m_rb1 = (RadioButton) findViewById(R.id.rb1);
m_rb2 = (RadioButton) findViewById(R.id.rb2);
m_row1 = (TableRow) findViewById(R.id.row_1);
m_row1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
m_rb1.setChecked(true);
m_rb2.setChecked(false);
}
});
m_row2 = (TableRow) findViewById(R.id.row_2);
m_row2.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
m_rb1.setChecked(false);
m_rb2.setChecked(true);
}
});
}
}
请注意,我希望用户通过选择文本,图片或按钮本身来选择RadioButton。所以我将整个TableRows作为可点击的对象。
希望这有帮助!