安卓等分氟元素宽度

LinearLayout 为  horizontal 的时候比较简单,使用下面两个属性即可:

android:layout_width="0dp"
android:layout_weight="1"

RelativeLayout 中使用下面的几个属性控制即可

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"/>

猜你喜欢

转载自my.oschina.net/zhupengdaniu/blog/1795275