我想在Widget
中使用垂直分隔符,但View
禁止使用Widget
元素。
他们是否有其他类似的解决方案?
<View
android:layout_width="2px"
android:layout_height="match_parent"
android:background="#496185"/>
答案 0 :(得分:0)
我使用RelativeLayout
代替View
找到了解决方案:
<RelativeLayout
android:layout_width="2dp"
android:layout_height="match_parent"
android:background="#496185"/>