我有这个 xml 文件,它应该在和divider
之间显示一个.TextView
Button
我正在使用holoeverywhere
库。
使用此代码,除法不显示
<org.holoeverywhere.widget.LinearLayout
xmlns:holo="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/topcontainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
holo:divider="?attr/dividerVertical"
holo:dividerPadding="8dp"
android:orientation="horizontal"
holo:showDividers="middle" >
<org.holoeverywhere.widget.TextView
android:id="@+id/textView6"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:text="@string/str1" />
<org.holoeverywhere.widget.Button
android:id="@+id/add"
style="?attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="ADD" />
</org.holoeverywhere.widget.LinearLayout>
现在问题在于这些属性LinearLayout
holo:divider="?attr/dividerVertical"
holo:dividerPadding="8dp"
holo:showDividers="middle"
如果我将namespace
这些属性更改为android
喜欢它,它会起作用并显示分隔线。
任何建议