首页 > 代码库 > RaidoGroup+RadioButton模拟android下拉框弹出List

RaidoGroup+RadioButton模拟android下拉框弹出List

引用

<上面的Hello world!是居左的,但是下面的文字却怎么都不能靠边。试了各种方法都不行。

最后,无意中给RadioButton添加一个backgroud属性即可:

 <RadioButton

            android:id="@+id/rbAll"            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:background="@android:color/white"            android:button="@null"            android:drawableRight="@drawable/selector_tb"            android:text="测试条目一"            android:textColor="@android:color/primary_text_light"            android:textSize="14sp" />

最后实现了所需效果。>已检证OK。

Java实现:

 

RaidoGroup+RadioButton模拟android下拉框弹出List