我无法控制LinearLayout的高度.这些将无法正确对齐,也不会填满宽度.我希望分隔线位于中央,两侧的按钮都在中间.这是我的代码:
divider.xml
更新1:
在@Onik的建议之后,View仍然坚持下去
更新2:
我删除了View元素,并在LinearLayout中添加了此代码,它工作正常!
android:divider="@drawable/divider"
android:showDividers="middle"
注意:android:divider属性仅在Android 3.0(API级别11)或更高版本中可用.
实际上这个链接帮助了我并显示了放置分隔符的正确方法:How to add (vertical) divider to a horizontal LinearLayout?
最佳答案
原文链接:https://www.f2er.com/android/431083.html