android:id="@+id/re1"
android:layout_width="match_parent"
android:layout_height="85dp"
android:layout_below="@+id/view"
android:layout_centerHorizontal="true">
android:id="@+id/radioSex"
android:layout_width="match_parent"
android:layout_height="455dp" >
android:layout_marginTop="10dp"
android:id="@+id/alphaa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Alphabetical(A-Z)"
android:checked="true" />
android:layout_marginTop="10dp"
android:id="@+id/alphaz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Alphabetical(Z-A)" />
android:layout_marginTop="10dp"
android:id="@+id/distance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Distance" />
运行代码时单选按钮最后不可见。 xml中的三个单选按钮,运行代码最后只显示不可见,两个按钮完美工作。任何想法。andriod中的三个单选按钮,但最后一个在android studio中不可见
在xml代码显示三个按钮时,我运行代码它没有显示。
+1
变化父布局到 Android的高度:layout_height = “WRAP_CONTENT” –
+0
针对此问题提供屏幕截图。 –
+0
如果您的单选按钮垂直对齐,然后看看相对布局的高度,这可能不足以显示第三个单选按钮 –