web-dev-qa-db-ja.com

Androidダイアログを全画面表示する

上下のスペースを除いて、画面いっぱいにダイアログが必要です。解決策を検索しましたが、おそらくonClickListenerで宣言しているため、解決策を見つけることができませんでした。誰かが解決策を教えてもらえますか?

アクティビティコード:

sort.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                AlertDialog.Builder sort = new AlertDialog.Builder(HomeScreen.this);
                // Get the layout inflater
                LayoutInflater inflater = HomeScreen.this.getLayoutInflater();
                View sortView = inflater.inflate(R.layout.sort_layout, null);
                sort.setView(sortView);
                sort.create().show();
            }
        });

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    Android:layout_marginBottom="50dp"
    Android:layout_marginTop="50dp"
    Android:background="@color/white"
    Android:orientation="vertical" Android:layout_gravity="center">
    + some more stuff here I dont think it's relevant
</LinearLayout>

enter image description here

22

ここで画面の幅と幅をダイアログに設定します

WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
    lp.copyFrom(dialog.getWindow().getAttributes());
    lp.width = width;
    lp.height = height;
    dialog.getWindow().setAttributes(lp);

またはあなたのスタイルでこのようなスタイルを作成します

 <style name="DialogTheme" parent="Android:Theme.Dialog">

    <item name="Android:layout_width">fill_parent</item>
    <item name="Android:layout_height">fill_parent</item>


    <!-- No backgrounds, titles or window float -->
    <item name="Android:windowBackground">@null</item>
    <item name="Android:windowNoTitle">true</item>
    <item name="Android:windowIsFloating">false</item>
</style>

このようなダイアログオブジェクトを作成します

dialog = new Dialog(this, R.style.DialogTheme);

編集::

埋めるデバイスに対してこのような幅と高さを取得します。

WindowManager manager = (WindowManager) getSystemService(Activity.WINDOW_SERVICE);
    int width, height;
    LayoutParams params;

    if (Build.VERSION.SDK_INT > VERSION_CODES.FROYO) {
        width = manager.getDefaultDisplay().getWidth();
        height = manager.getDefaultDisplay().getHeight();
    } else {
        Point point = new Point();
        manager.getDefaultDisplay().getSize(point);
        width = point.x;
        height = point.y;
    }
40
kalyan pvs

まず、style.xmlファイルでダイアログのカスタムスタイルを作成します。

<style name="full_screen_dialog" parent="@Android:style/Theme.Dialog">
    <item name="Android:windowNoTitle">true</item>
    <item name="Android:windowFullscreen">true</item>
    <item name="Android:windowIsFloating">true</item>
    <item name="Android:windowContentOverlay">@null</item>
    <item name="Android:windowAnimationStyle">@Android:style/Animation.Dialog</item>
    <item name="Android:windowSoftInputMode">stateUnspecified|adjustPan</item>
    <item name="Android:windowBackground">@Android:color/transparent</item>
</style>

次に、このテーマをアラートダイアログに設定した後:

 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this,  R.style.full_screen_dialog));

または、新しいアクティビティを呼び出して、このカスタムスタイルをそのアクティビティにマニフェストファイルのテーマとして与えることができます...

11
Piyush

これは誰かに役立つかもしれません。ダイアログが画面の幅いっぱいに表示されるようにします。たくさん検索しましたが、有用なものはありませんでした。最後に、これは私のために働いた:

mDialog.setContentView(R.layout.my_custom_dialog);
mDialog.getWindow().setBackgroundDrawable(null);

これを追加すると、ダイアログが画面全体に表示されます。

3
Rahul Sharma

これを試して

theme.Dialogスタイルが設定されているアクティビティ、これを行います:

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.your_layout);

getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
}
3
mdDroid

以下のテーマのようなオブジェクトを作成する

Dialog objD = new Dialog(this,     Android.R.style.Theme_Translucent_NoTitleBar);

私はあなたがこれを試してみるべきだと思う:

dialogFragment内:

@Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setStyle(DialogFragment.STYLE_NORMAL, Android.R.style.Theme_Black_NoTitleBar_Fullscreen);
        }
0
siddharth patel

全画面ダイアログを作成する最も簡単な方法は、次のようなスタイルを作成します。

<style name="DialogFullScreenTheme" parent="Theme.AppCompat.Light.DialogWhenLarge">
    <item name="windowNoTitle">true</item>
    <item name="Android:statusBarColor">@color/colorPrimaryDark</item>
</style>

その後:

dialog = new Dialog(this, R.style.DialogFullScreenTheme);
0
Tushski
   Dialog dialog2 = new Dialog(context, R.style.DialogTheme);
    dialog2.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog2.getWindow().setBackgroundDrawable(null);
    dialog2.setContentView(R.layout.dialog_img);
    WindowManager.LayoutParams lp = dialog2.getWindow().getAttributes();
    Window window = dialog2.getWindow();
    lp.copyFrom(window.getAttributes());
    lp.width = WindowManager.LayoutParams.MATCH_PARENT;
    lp.height = WindowManager.LayoutParams.MATCH_PARENT;
    window.setAttributes(lp);
    lp.gravity = Gravity.CENTER;
    final ImageView imgprofile=(ImageView)dialog2.findViewById(R.id.img_centre);
    Picasso.with(context)
            .load(arrayImages.get(position).get("image"))
            .resize(800,1000)
            .centerInside()
            .into(imgprofile, new Callback() {

                @Override
                public void onSuccess() {

                }

                @Override
                public void onError() {
                    imgprofile.setImageResource(R.drawable.user);
                }
            });
    dialog2.show();

また、dialog_img.xmlファイルで、scaleType(fitXY)を使用してImageviewを追加します。

0
niks_ahlawat