gpt4 book ai didi

java - Android Layout_Weight 在 TableLayout 中无法正常工作?

转载 作者:行者123 更新时间:2023-11-30 02:24:55 24 4
gpt4 key购买 nike

我创建此界面时,表格布局的最顶行 有 3 个使用 layout_weight 均匀分布的按钮。但这就是我最终得到的:

enter image description here

这是我的代码:

      <RelativeLayout
android:id="@+id/content_rel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ECECEC"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/blurImage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dip" >

<ImageButton
android:id="@+id/btnHeartLike"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:clickable="true"
android:src="@drawable/selector" />

<ImageButton
android:id="@+id/btnShare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:clickable="true"
android:src="@drawable/share39" />

<ImageButton
android:id="@+id/btnProductComment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:clickable="true"
android:src="@drawable/comment_icon" />
</TableRow>

我没有添加其余代码,因为它又长又不相关(我认为?)。让我知道您是否还需要其余部分,但我认为问题在于它所在的布局?你觉得哪里不对?

最佳答案

尝试将宽度设置为 0 而不是 wrap_content:android:layout_width="0.0dip"

并检查 following link求解释。

关于java - Android Layout_Weight 在 TableLayout 中无法正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28001322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com