没有全高度垂直分隔线android

时间:2015-09-17 13:28:18

标签: android android-layout divider

我的两个按钮之间已经有一个垂直分隔符,如下所示:

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:divider="?android:dividerVertical"
    android:showDividers="middle"
    >
    <Button
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:background="@drawable/flat_selector"
        android:textColor="@android:color/white"
        android:text="Connexion"
        android:textStyle="bold"
        android:layout_weight="1"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:background="@drawable/flat_selector"
        android:textColor="@android:color/white"
        android:text="Inscription"
        android:textStyle="bold"
        android:layout_weight="1"/>
</LinearLayout>

但是我希望有一个不占用所有可用高度的,但只有一半,例如,从布局的中间开始。 我已经尝试创建自定义分隔符:

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <size android:width="0.5dp"/>
    <solid android:color="#ffffff"/>
</shape>

然后玩android:height,但它没什么好处。还有其他想法吗?

0 个答案:

没有答案