我有一个AlertDialog
,我使用了自定义对话框视图。 自定义标题视图的想法似乎很简单,但周围的自定义标题,我似乎无法摆脱黑边。 顶部,左侧和右侧有一个单一像素的边框,而底面有大约5像素的边框。
使用Java创建对话框:
View titleView = inflater.inflate(R.layout.part_list_item, parent, false);
((TextView) titleView.findViewById(R.id.partName)).setText(titleText);
AlertDialog productDialog = new AlertDialog.Builder(getContext())
.setCustomTitle(titleView)
.setAdapter(adapter, doNothingClickListener)
.create();
自定义标题视图布局, part_list_item.xml
:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:id="@+id/partName"
android:layout_marginLeft="6dip"
android:textAppearance="?android:attr/textAppearanceLargeInverse"
/>
我所看到的:
我希望看到的:
有任何想法吗?