Commit dcd75745 by onuma

setPaddingを if文ごとコメントアウト

parent 4885a789
...@@ -72,11 +72,12 @@ public class OperationTaskLayout extends RelativeLayout { ...@@ -72,11 +72,12 @@ public class OperationTaskLayout extends RelativeLayout {
super(context); super(context);
mContext = (ContentViewActivity)context; mContext = (ContentViewActivity)context;
if (isNormalSize) { // #39410 【Check】報告タブの上部にグレー帯と×ボタンが表示されない
// #39410 【Check】報告タブの上部にグレー帯と×ボタンが表示されない // android 10 で setPaddingすると、Paddingの値分WebView が表示されないので
// android 10 で setPaddingすると、Paddingの値分WebView が表示されないのでコメント // setPaddingを実行せずに、WebViewを全画面表示にする。
//setPadding(0, 130, 0, 0); //if (isNormalSize) {
} // setPadding(0, 130, 0, 0);
//}
mWebView = new EnqueteWebView(context); mWebView = new EnqueteWebView(context);
mWebView.setVerticalScrollbarOverlay(true); // スクロールバー部分の隙間を消す mWebView.setVerticalScrollbarOverlay(true); // スクロールバー部分の隙間を消す
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment