0

向きが変わったときにアンドロイドでダイアログの寸法を変更する方法。

onCreate のコード

static final float[] DIMENSIONS_DIFF_LANDSCAPE = {20, 60};
static final float[] DIMENSIONS_DIFF_PORTRAIT = {40, 60};

final float scale = getContext().getResources().getDisplayMetrics().density;
int orientation = getContext().getResources().getConfiguration().orientation;

float[] dimensions =
                (orientation == Configuration.ORIENTATION_LANDSCAPE)
                        ? DIMENSIONS_DIFF_LANDSCAPE : DIMENSIONS_DIFF_PORTRAIT;
                 addContentView(mContent, new LinearLayout.LayoutParams(
                    display.getWidth() - ((int) (dimensions[0] * scale + 0.5f)),
                    display.getHeight() - ((int) (dimensions[1] * scale + 0.5f))));

向きが変わったときも同じようにしたい。助けてください

4

2 に答える 2

1

oriebtationに従ってダイアログの高さを設定するカスタムコードをチェックしてください:これを実装することで私のダイアログは柔軟になります...タブレットでこれを使用しています

WindowManager winMan = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
            int height = winMan.getDefaultDisplay().getHeight();
            int width=winMan.getDefaultDisplay().getWidth();
            if(height>width){

                if(DeviceType.getDeviceType(context)==Device.NEXUS7){
                dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(700,1100));
                }else if (DeviceType.getDeviceType(context)==Device.GALAXYTAB2){
                    dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(580,900));
                }else if(DeviceType.getDeviceType(context)==Device.GALAXY10){
                    dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(700,1100));
                }


            else{
                if(DeviceType.getDeviceType(context)==Device.NEXUS7){
                    dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(700,700));
                }else if (DeviceType.getDeviceType(context)==Device.GALAXYTAB2){
                    dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(700,500));
                    System.out.println("galaxy tab 2 landescape");
                }else if(DeviceType.getDeviceType(context)==Device.GALAXY10){
                dialoglayout.setLayoutParams(new FrameLayout.LayoutParams(700,700));
            }
于 2013-05-10T10:57:26.877 に答える