簡體   English   中英

如何使AppCompat活動成為對話框?

[英]How to make an AppCompat Activity as a Dialog?

我需要將我的AppCompat活動用作對話框。為此,我嘗試了讓我的解決方案在StackOverflow中回答的問題。 但是沒有任何效果,請回答我。 我正在將活動作為對話框。 但是它的高度和寬度都非常狹窄。

我使用了以下主題:

<style name="AppDialogTheme" parent="Theme.AppCompat.Light.Dialog">
    <item name="android:windowFrame">@null</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="windowNoTitle">true</item>
    <item name="android:background">@android:color/transparent</item>
</style>

在此輸入圖像描述

您可以使用DialogFragment並相應地自定義布局。

public class CustomDialogFrag extends DialogFragment{
static FragmentManager fragmentManager;
    public static CustomDialogFrag showDialog(FragmentManager fm){
        CustomDialogFrag customDialogFrag=new CustomDialogFrag();
        fragmentManager=fm;
        return customDialogFrag;
    }
@Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
           AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());
        View view = getActivity().getLayoutInflater().inflate(R.layout.dialogfrag_layout, null);
        alertDialogBuilder.setView(view);
        setupUI(view);
        alertDialogBuilder.setTitle("Notification Message");
        alertDialogBuilder.setIcon(R.drawable.notificationicon);
        alertDialogBuilder.setPositiveButton("Close", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                dialog.dismiss();
            }
        });
        return alertDialogBuilder.create();
    }
void setupUI(View view){
        TextView textViewOne=(TextView)view.findViewById(R.id.txtEventAlias);
        TextView textViewTwo=(TextView)view.findViewById(R.id.txtTime);
        TextView textViewThree=(TextView)view.findViewById(R.id.txtLogMessage);
        textViewOne.setText("Text 1");
        textViewTwo.setText("Text 2");
        textViewThree.setText("Text 3");
    }
}


並且dialogfrag_layout.xml將是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/margin_10"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/txtEventAlias"
        android:text="Sample"
        android:textColor="@android:color/darker_gray"
        android:textSize="@dimen/textSizeMedium"
        android:padding="@dimen/margin_10"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/txtTime"
        android:text="Sample"
        android:textColor="@android:color/darker_gray"
        android:textSize="@dimen/textSizeMedium"
        android:padding="@dimen/margin_10"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/txtLogMessage"
        android:text="Sample"
        android:textColor="@android:color/darker_gray"
        android:textSize="@dimen/textSizeMedium"
        android:padding="@dimen/margin_10"
        />
</LinearLayout>

要從Fragment調用此對話框:

DialogFragment dialogFragment=CustomDialogFrag.showDialog(getFragmentManager());
dialogFragment.show(getActivity().getFragmentManager(), "tag");

在您活動的onCreate中添加以下行:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_your);

    // Make the window's width full sized
    WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
    Window window = getWindow();

    layoutParams.copyFrom(window.getAttributes());
    layoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
    layoutParams.height = WindowManager.LayoutParams.MATCH_PARENT;

    window.setAttributes(layoutParams);
}

經過測試和工作。 如果需要,可以將寬度和高度都設置為WRAP_CONTENT

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM