1
アンドロイド:ボタンでドロアブルを変更し、上にテキストを置いたラジオボタンはどうやって作りますか?通常のラジオボタンでは、テキストはドロウアブルの背後に重ねられます。上にテキストがあるラジオボタン
今私は自分のラジオボタンの不満足な実装で出始めています。
私はこのような何かをしたい:
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<RadioButton
android:text="something that is on top"
android:id="@+id/toggle_tab_left"
android:button="@drawable/main_selector"
style="@style/TabStyle"/>
<RadioButton
android:button="@drawable/info_selector"
android:text="something that is on top"
android:id="@+id/toggle_tab_right"
style="@style/TabStyle"/>
</RadioGroup>
あなたは何を正確に伝えたいですか? – Newts
RadioButtonの重力を試してみてください。 –
重力はどのように役立ちますか?私は上/上の視覚的に上のx軸/ y軸ではないZ軸のようにします。問題は、画像がテキストの上に載っているため、あなたはそれを読むことができない... – Warpzit