gpt4 book ai didi

java - 我的 TableLayout 中的项目没有在 Eclipse 中排列

转载 作者:行者123 更新时间:2023-11-30 03:31:33 26 4
gpt4 key购买 nike

我试图让我的 Android 布局在顶部有两个 ImageView,每个占据水平空间的一半,并且在两个 imageview 下方总共有 3 个按钮,如下图所示。

[ ImageView ][ ImageView ]
[butn1][butn2][butn3]

但是,两个 ImageView 都被限制在 butn1 的右侧,就像这样

[i1][i2]
[butn1][butn2][butn3]

我的代码如下。

<TableLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/background_dark"
android:orientation="horizontal"
android:stretchColumns="*" >

<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="9" >

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5" >

<ImageView
android:id="@+id/boobs_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true" />
</RelativeLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5" >

<ImageView
android:id="@+id/kittens_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:adjustViewBounds="true" />
</RelativeLayout>
</LinearLayout>
</TableRow>

<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >

<Button
android:id="@+id/save_boobs_internal_storage_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text = "Save titties"
style="@style/ButtonTheme" />

<Button
android:id="@+id/next_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text = "Next"
style="@style/ButtonTheme" />

<Button
android:id="@+id/save_kitty_internal_storage_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text = "Save kitty"
style="@style/ButtonTheme" />

</TableRow>

</TableLayout>

最佳答案

我想通了

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/background_dark" >

<LinearLayout
android:id="@+id/imagesLinearLayout"
android:orientation="horizontal"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5" >

<ImageView
android:id="@+id/boobs_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true" />
</RelativeLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5" >

<ImageView
android:id="@+id/kittens_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:adjustViewBounds="true" />
</RelativeLayout>
</LinearLayout>

<LinearLayout
android:id="@+id/buttonLinearLayout"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:gravity="bottom" >

<Button
android:id="@+id/save_boobs_internal_storage_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text = "Save titties"
style="@style/ButtonTheme" />

<Button
android:id="@+id/next_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text = "Next"
style="@style/ButtonTheme" />

<Button
android:id="@+id/save_kitty_internal_storage_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text = "Save kitty"
style="@style/ButtonTheme" />
</LinearLayout>

</RelativeLayout>

关于java - 我的 TableLayout 中的项目没有在 Eclipse 中排列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17378116/

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