我有一个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"
/>
我所看到的:
我想看到的:
有任何想法吗?