在水平线之间居中无边框按钮

时间:2013-10-19 13:34:31

标签: android android-layout android-xml android-button

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

Screenshot

按钮由垂直线分隔,我希望它们居中于由垂直线创建的“列”中:

这是我的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>

enter image description here

我也尝试将其中的线性布局更改为包装内容的高度,但没有修复它。

2 个答案:

答案 0 :(得分:2)

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

我们所拥有的内容基本上如下所示:layout_weight根据提供的数字将布局的额外空间分配给儿童。由于宽度被告知包裹它的孩子,没有额外的空间。如果我们提供更大的尺寸,例如match_parent,则会有额外的空间,因此将根据给予layout_weight的数字为孩子们提供额外的空间。在这种情况下,它将为每个按钮提供相同的金额,因此它们的大小相同。

Demonstration

答案 1 :(得分:1)

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

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