AlertDialog
カスタム ダイアログ ビューを使用する があります。カスタム タイトル ビューのアイデアは単純に思えますが、カスタム タイトルの周りに黒い境界線があり、それを取り除くことができないようです。上部、左側、右側には 1 ピクセルの境界線があり、下部には約 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"
/>
私が見るもの:
私が見たいもの:
何か案は?