我的两个按钮之间已经有一个垂直分隔符,如下所示:
<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,但它没什么好处。还有其他想法吗?