我的 xml 文件中有以下布局。RelativeLayouts
我的xml中还有其他类似的
<RelativeLayout
android:id="@+id/contentTextViewLayout"
android:layout_weight="0.9"
android:layout_width="fill_parent"
android:layout_height="0dip">
<TextView
android:id="@+id/textViewStory1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:lineSpacingMultiplier="1.2"
android:textColor="#000000"
android:background="@drawable/book"/>
</RelativeLayout>
我想更改代码中的layout_weight
参数RelativeLayout
。我怎样才能做到这一点?