맞춤보기 레이아웃을 사용하여 알림 대화 상자를 만들려고하지만 대화 상자가 나타나지 않고 화면이 흐려집니다.맞춤 레이아웃이 표시된 AlertDialog가 표시되지 않습니다.
AlertDialog.Builder builder = new AlertDialog.Builder(MyActivity.this);
builder.setView(findViewById(R.id.system_profile_dialog));
AlertDialog setSysProfileDialog = builder.create();
setSysProfileDialog.show();
XML :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/system_profile_dialog"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:hint="@string/system_profile_hint"
android:inputType="number" />
</LinearLayout>
해당 호출은 API 21 이상에서 유용합니다. –
네 말이 맞습니다. <21을 목표로한다면 Vucko가 제안한 것을해야합니다. – colens