Commit 4f7dd159 by Lee Jaebin

端末モデルFZ-L1の対応

parent eee026f9
...@@ -127,10 +127,8 @@ public class OperationListHelper { ...@@ -127,10 +127,8 @@ public class OperationListHelper {
child.setNumColumns(NORMAL_SIZE_COLUMN); child.setNumColumns(NORMAL_SIZE_COLUMN);
} else { } else {
if (Build.MODEL.equals("FZ-L1")) { if (Build.MODEL.equals("FZ-L1")) {
if (mAppActivity.isOrientationPortrait()) { // 縦: 1 横: 2
// 縦: 1 横: 2 child.setNumColumns(mAppActivity.isOrientationPortrait() ? 1 : 2);
child.setNumColumns(mAppActivity.isOrientationPortrait() ? 1 : 2);
}
} else { } else {
// タブレットの場合、1行当たりのパンネル数 // タブレットの場合、1行当たりのパンネル数
if (mAppActivity.isOrientationPortrait()) { if (mAppActivity.isOrientationPortrait()) {
......
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