如何将drawable放置在屏幕右侧,其中文本保留为图像中给出的单选按钮样式。如何完成这项任务?
我如何实现图像中给出的任务?问题是动态的。他们可以改变
答案 0 :(得分:0)
我会使用此代码来实现您的目标。这是一行,因此您可以轻松地将其添加到RecyclerView中,或者只是在事先知道问题时对其进行硬编码。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="20dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Issue 1"
android:layout_centerVertical="true"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"/>
</RelativeLayout>