当我使用ScrollView时,一些列适合。 例:
DNI列应该更宽一些。 使用scrollview的原因是因为我将添加更多列。我尝试从StackOverflow的其他帖子中更改“match_parent”和一些技巧,但我没有得到任何成功的结果。
我重构了代码以避免嵌套权重并使用“0dp”:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.privacity.PermisosActivity"
tools:ignore="MergeRootFrame" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:orientation="vertical"
android:weightSum="1" >
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:baselineAligned="false"
android:weightSum="2" >
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignTop="true" >
<CheckBox
android:id="@+id/chkNombre"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/textView3"
android:layout_alignTop="true"
android:layout_gravity="center"
android:background="@xml/nombre_checkbox"
android:button="@null" />
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_gravity="center"
android:text="@string/nombre"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="15sp" />
</RelativeLayout>
<!-- ANOTHER RelativeLayout -->
</RelativeLayout>
<!-- FIN DE COLUMNA -->
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignTop="true" >
<CheckBox
android:id="@+id/chkDNI"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/textView4"
android:layout_alignTop="true"
android:background="@xml/dni_checkbox"
android:button="@null" />
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:gravity="center"
android:text="@string/nombre"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="15sp" />
</RelativeLayout>
<!-- ANOTHER RelativeLayout -->
</RelativeLayout>
<!-- FIN COLUMNA -->
</LinearLayout>
</HorizontalScrollView>
<Button
android:id="@+id/AceptarPerfil"
style="@style/btnStyleGreen"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_weight="0.5"
android:onClick="validar"
android:text="@string/validar" />
</LinearLayout>
</FrameLayout>
如果我更改文本(Nombre而不是DNI),宽度是相同的,所以我的textview或他们的父母发生了错误。
我想知道为什么会这样。