Android 横竖屏切换时 Dialog 布局自适应
生活随笔
收集整理的這篇文章主要介紹了
Android 横竖屏切换时 Dialog 布局自适应
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
自定義的Dialog :
?
public class GiveUpGameDialog extends Dialog {? ? ......
? ? @Override
? ? public void onContentChanged() {
? ? ? ? super.onContentChanged();
? ? ? ? Display display = mActivity.getWindowManager
? ? ? ? WindowManager.LayoutParams params = this.getWindow().getAttributes();
? ? ? ? params.width = display.getWidth();
? ? ? ? this.getWindow().setAttributes(params);
? ? ? ? this.getWindow().setGravity(Gravity.BOTTOM);
? ? }
}
總結
以上是生活随笔為你收集整理的Android 横竖屏切换时 Dialog 布局自适应的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android控件拖动,移动、解决父布局
- 下一篇: Android 拦截WebView请求,