0

我正在尝试在 android 中使用边框按钮。目前我有一个按钮看起来像这样的活动:

截屏

这些按钮由一条垂直线分隔,我希望它们在由垂直线创建的“列”中居中:

这是我的xml:

    <?xml version="1.0" encoding="utf-8"?>

<LinearLayout 
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            android:orientation="vertical"
            android:background="@drawable/bg_card">

            <!-- Card Contents go here -->
            <TextView
                android:id="@+id/breweryTitle"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:textSize="20sp"
                android:textStyle = "bold"
                android:padding="5dip"
                >
            </TextView>




        </LinearLayout >

    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            android:orientation="vertical"
            android:background="@drawable/bg_card">

            <!-- Card Contents go here -->


            <ImageView android:id="@+id/breweryImage"
                android:layout_height="wrap_content"
                android:layout_width="fill_parent"
                android:layout_margin="10dip"/>


        </LinearLayout >

    </FrameLayout>





<TableLayout  

android:id="@+id/tableLayout2"  
android:layout_width="match_parent"  
android:layout_height="match_parent"  
android:layout_gravity="center_horizontal"
android:shrinkColumns="*"  
android:stretchColumns="*">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            android:orientation="vertical"
            android:background="@drawable/bg_card">

            <!-- Card Contents go here -->

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

            <TextView
                android:id="@+id/breweryEstablished"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ems="10"
                android:text="Year Established: "
                android:textSize="15sp"
                android:textStyle = "bold"
                android:padding="5dip"
                >
            </TextView>

            <TextView
                android:id="@+id/yearTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ems="10"
                android:text=""
                android:textSize="15sp"
                android:padding="5dip"
                >
            </TextView>

            </LinearLayout>


        </LinearLayout >

    </FrameLayout>





</TableLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            android:orientation="vertical"
            android:background="@drawable/bg_card">

            <!-- Card Contents go here -->
            <TextView
                android:id="@+id/beerDescriptionTitle2"
                android:textStyle = "bold"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:textSize="15sp"
                android:text="Description:"
                android:padding="5dip"
                ></TextView>

            <TextView
                android:id="@+id/breweryDescription"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:textSize="15sp"
                android:padding="5dip"

                ></TextView>





        </LinearLayout >

    </FrameLayout>



    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            android:orientation="vertical"
            android:background="@drawable/bg_card">

            <TextView
                android:id="@+id/discoverLabel"
                android:textStyle = "bold"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:textSize="15sp"
                android:text="Discover:"
                android:padding="5dip"
                ></TextView>

            <!-- Card Contents go here -->
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:layout_gravity="center"
                android:orientation="horizontal"
                >

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="All Beers"
                    android:id="@+id/button"
                    style="?android:attr/borderlessButtonStyle"
                    android:textColor="@color/orange"
                    android:textStyle="bold"
                    android:onClick="getAllBeers"
                    android:layout_centerHorizontal="true"
                    android:layout_weight="1"/>

                <View
                    android:id="@+id/ViewColorPickerHelper"
                    android:layout_width="1dip"
                    android:layout_height="match_parent"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentBottom="true"
                    android:layout_marginBottom="4dip"
                    android:layout_marginTop="4dip"
                    android:background="?android:attr/dividerVertical"
                    android:layout_centerHorizontal="true"/>

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Top Beers"
                    android:id="@+id/button2"
                    style="?android:attr/borderlessButtonStyle"
                    android:textColor="@color/orange"
                    android:textStyle="bold"
                    android:onClick="getTopBeers"
                    android:layout_centerHorizontal="true"
                    android:layout_weight="1"
                    />

                <View
                    android:id="@+id/ViewColorPickerHelper"
                    android:layout_width="1dip"
                    android:layout_height="match_parent"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentBottom="true"
                    android:layout_marginBottom="4dip"
                    android:layout_marginTop="4dip"
                    android:background="?android:attr/dividerVertical"
                    android:layout_centerHorizontal="true"/>

                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Your Beers"
                    android:id="@+id/button2"
                    style="?android:attr/borderlessButtonStyle"
                    android:textColor="@color/orange"
                    android:textStyle="bold"
                    android:onClick="getYourTopBeers"
                    android:layout_centerHorizontal="true"
                    android:layout_weight="1"
                    />

            </LinearLayout>

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Directions to Brewery"
                android:id="@+id/button2"
                style="?android:attr/borderlessButtonStyle"
                android:textColor="@color/orange"
                android:textStyle="bold"
                android:onClick="getDirections"
                />





        </LinearLayout >

    </FrameLayout>





</LinearLayout>

我尝试过使用布局宽度和重力,但仍然没有运气。

更新:

我尝试了最近的建议,现在我将它们全部正确居中,但这只是让一切都变得超长,我看不到倒数第三个按钮。

<FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="6dp"
                android:layout_marginRight="6dp"
                android:layout_marginTop="4dp"
                android:layout_marginBottom="4dp"
                android:orientation="vertical"
                android:background="@drawable/bg_card">

                <TextView
                    android:id="@+id/discoverLabel"
                    android:textStyle = "bold"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:ems="10"
                    android:textSize="15sp"
                    android:text="Discover:"
                    android:padding="5dip"
                    ></TextView>

                <!-- Card Contents go here -->
                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_gravity="center"
                    android:orientation="horizontal"
                    >


                    <Button
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:text="All Beers"
                        android:id="@+id/button"
                        style="?android:attr/borderlessButtonStyle"
                        android:textColor="@color/orange"
                        android:textStyle="bold"
                        android:onClick="getAllBeers"
                        android:layout_centerHorizontal="true"
                        android:layout_weight="0.33"/>

                    <View
                        android:id="@+id/ViewColorPickerHelper"
                        android:layout_width="1dip"
                        android:layout_height="match_parent"
                        android:layout_alignParentTop="true"
                        android:layout_alignParentBottom="true"
                        android:layout_marginBottom="4dip"
                        android:layout_marginTop="4dip"
                        android:background="?android:attr/dividerVertical"
                        android:layout_centerHorizontal="true"/>

                    <Button
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:text="Top Beers"
                        android:id="@+id/button2"
                        style="?android:attr/borderlessButtonStyle"
                        android:textColor="@color/orange"
                        android:textStyle="bold"
                        android:onClick="getTopBeers"
                        android:layout_weight="0.33"
                        />

                    <View
                        android:id="@+id/ViewColorPickerHelper"
                        android:layout_width="1dip"
                        android:layout_height="match_parent"
                        android:layout_alignParentTop="true"
                        android:layout_alignParentBottom="true"
                        android:layout_marginBottom="4dip"
                        android:layout_marginTop="4dip"
                        android:background="?android:attr/dividerVertical"
                        android:layout_centerHorizontal="true"/>

                    <Button
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:text="Your Beers"
                        android:id="@+id/button2"
                        style="?android:attr/borderlessButtonStyle"
                        android:textColor="@color/orange"
                        android:textStyle="bold"
                        android:onClick="getYourTopBeers"
                        android:layout_centerHorizontal="true"
                        android:layout_weight="0.33"
                        />


                </LinearLayout>

                <Button
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:text="Directions to Brewery"
                    android:id="@+id/button2"
                    style="?android:attr/borderlessButtonStyle"
                    android:textColor="@color/orange"
                    android:textStyle="bold"
                    android:onClick="getDirections"
                    />



            </LinearLayout >

        </FrameLayout>

在此处输入图像描述

我还尝试将线性布局更改为 wrap-content 的高度,但这并没有解决它。

4

2 回答 2

2

包裹按钮的线性布局应该有一个layout_widthof match_parent,而不是wrap content。这样,它将占用所有可用空间。

我们所拥有的基本上如下所示:根据提供的数量将布局layout_weight额外空间分配给孩子。由于 width 被告知要包裹它的孩子,所以没有额外的空间。如果我们给一个更大的尺寸,比如match_parent,就会有额外的空间,这样额外的空间就会根据给 的数量分配给孩子们layout_weight。在这种情况下,它将为每个按钮提供相等的数量,因此它们将具有相同的大小。

示范

于 2013-10-21T00:45:59.760 回答
1

尝试使用 center_horizo​​ntal 而不是 center 作为重力值。重量也意味着是一个浮点数,因为你想要每个宽度的 1/3,你应该使用 0.33 而不是 1。如果你设置 layout_width="0",你只能水平使用 layout_weight,所以也这样做!正如 moveaway00 所说,您应该确保父布局使用 match_parent 而不是 wrap_content。

总结:有一堆错误,使用我在下面评论中提到的背景颜色技巧将来有条不紊地调试此类问题;)

于 2013-10-19T13:52:37.197 回答