gpt4 book ai didi

android:垂直合并2个表行中的组件

转载 作者:行者123 更新时间:2023-11-30 03:51:57 25 4
gpt4 key购买 nike

假设我有一个布局 xml 如下:

表格布局

Row0: |                     textView_title (width=9)                  |

Row1: | ButtonX(width=3) | textView_describe (width=6) |

Row2: | ButtonY(width=3) | Button_back(width=3)| Button_start(width=3)|

水平合并可以像下面的代码一样使用跨度技术。请问是否可以合并ButtonX和ButtonY? (即垂直?),如果不是,有没有什么方法可以做这样的布局?

非常感谢!!

编码:

<?xml version="1.0" encoding="utf-8"?><TableLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*"
android:screenOrientation="landscape"
android:background="@drawable/blackboard" >

<TableRow
android:id="@+id/tableRow0"
android:layout_weight="0.2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/textview_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:background="@drawable/transparent_btn"
android:gravity="center"
android:layout_span="9"
android:text="@string/title_number"
android:textColor="@color/white"
android:textSize="60dp" />
</TableRow>

<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_weight="0.5"
android:gravity="center" >


<Button
android:id="@+id/buttonX"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:layout_span="3"
android:background="@drawable/transparent_btn"
android:text=""
android:textSize="30dp" />


<TextView
android:id="@+id/text_describe"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:layout_span="6"
android:background="@drawable/white_dot_btn"
android:gravity="top"
android:onClick="button_start_click"
android:text="abc"
android:textColor="@color/white"
android:textSize="20dp" />

</TableRow>



<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_weight="0.3"
android:gravity="center" >

<Button
android:id="@+id/buttonY"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:layout_span="3"
android:background="@drawable/transparent_btn"
android:text=""
android:textSize="30dp" />

<Button
android:id="@+id/button_back"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:layout_span="3"
android:background="@drawable/white_btn"
android:text="quit"
android:onClick="button_back_click"
android:textSize="30dp" />

<Button
android:id="@+id/button_start"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:layout_span="3"
android:background="@drawable/green_btn"
android:text="start"
android:onClick="button_start_click"
android:textSize="30dp" />

</TableRow>
</TableLayout>

最佳答案

我认为使用 TableLayout 不可能做到这一点。但是您绝对可以使用 RelativeLayout

做到这一点

从您的代码到 RelativeLayout 的快速转换:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/textview_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_margin="2dp"
android:background="@drawable/transparent_btn"
android:gravity="center"
android:text="@string/title_number"
android:textColor="@color/white" />

<Button
android:id="@+id/buttonXY"
android:layout_width="100dp"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textview_title"
android:layout_margin="2dp"
android:background="@drawable/transparent_btn"
android:text="XY button" />

<TextView
android:id="@+id/text_description"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/buttonXY"
android:layout_margin="2dp"
android:layout_toRightOf="@+id/buttonXY"
android:background="@drawable/white_dot_btn"
android:gravity="top"
android:onClick="button_start_click"
android:text="abc"
android:textColor="@color/white" />

<Button
android:id="@+id/button_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/text_description"
android:layout_below="@+id/text_description"
android:layout_margin="2dp"
android:background="@drawable/white_btn"
android:onClick="button_back_click"
android:text="quit" />

<Button
android:id="@+id/button_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/buttonXY"
android:layout_alignParentRight="true"
android:layout_margin="2dp"
android:layout_toRightOf="@+id/button_back"
android:background="@drawable/green_btn"
android:onClick="button_start_click"
android:text="start" />

</RelativeLayout>

唯一的缺点是宽度不能再那么动态了。但是可能还有一些其他技巧可以用来解决这个问题。我把这个留给你自己的灵感

关于android:垂直合并2个表行中的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14012862/

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