Commit 269dda45 by Kazuyuki Hida

ダッシュボードのヘルプ表示を追加

parent 9a7af04a
...@@ -112,6 +112,7 @@ public class Constant { ...@@ -112,6 +112,7 @@ public class Constant {
int CommonContent = 15; int CommonContent = 15;
int RoutineTaskOperation = 16; int RoutineTaskOperation = 16;
int RoutineTaskOperationReport = 17; int RoutineTaskOperationReport = 17;
int OperationDashboard = 13;
} }
public interface XWalkWebViewDisplayStatus { public interface XWalkWebViewDisplayStatus {
......
...@@ -255,6 +255,11 @@ public class HelpActivity extends ABVUIActivity { ...@@ -255,6 +255,11 @@ public class HelpActivity extends ABVUIActivity {
R.string.msg_help_report_send_back, R.string.msg_help_report_send_back,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)), R.drawable.ic_sendback)); getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)), R.drawable.ic_sendback));
break; break;
case Constant.HelpViewType.OperationDashboard:
mMainDescription = PatternStringUtil.patternToString(getApplicationContext(),
R.string.msg_help_dashboard,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0));
break;
} }
if (!(helpViewTye == Constant.HelpViewType.OperationListDirector || helpViewTye == Constant.HelpViewType.OperationListReporter || helpViewTye == Constant.HelpViewType.OperationDetail)) { if (!(helpViewTye == Constant.HelpViewType.OperationListDirector || helpViewTye == Constant.HelpViewType.OperationListReporter || helpViewTye == Constant.HelpViewType.OperationDetail)) {
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
......
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