我用了权重,还非得加上 layout_width么。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="115dp"
android:orientation="horizontal"
android:layout_marginTop="30dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:gravity="center">
<TextView
android:id="@+id/img_x00000c00Value"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="2000"
android:textColor="@color/white"
android:textSize="40dp" />
<TextView
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="40dp"
android:textColor="@color/white"
android:text="" />
<TextView
android:id="@+id/img_xff020001Value"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:textSize="40dp"
android:textColor="@color/white"
android:text="100.1" />
</LinearLayout>
报错java.lang.RuntimeException: Binary XML file line #22: You must supply a layout_width attribute.
------解决思路----------------------
基本属性必须得有,值改为0dp就行了
------解决思路----------------------
layout_width加上啊,可以是0dp的