<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toRightOf="@+id/iv_icon" android:orientation="horizontal" > <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" style="@android:style/Widget.ProgressBar.Horizontal" android:max="100" android:progress="20" android:layout_weight="1" android:layout_gravity="center" /> <Button android:id="@+id/button_upload" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="上传" /> </LinearLayout>
1.android:orientation="horizontal",水平布局 或是 垂直布局
在 需要 拉伸的 那个控件上 设置
android:layout_weight="1" 就可以了
layout_weight_权重
最新推荐文章于 2021-04-16 11:16:46 发布
