Commit 1c7d7466 by Jeong Gilmo

#33006 事業者毎のリソース多重化(Android)

- パターン化ができないメッセージを削除する。
parent fc60ecba
......@@ -453,17 +453,6 @@ public class OperationListActivity extends ABVUIActivity {
mEndDate = (TextView) mSearchDialog.findViewById(R.id.end_date);
// リソースパターンを適用
TextView operationName = (TextView) mSearchDialog.findViewById(R.id.settingLayout);
operationName.setText(PatternStringUtil.patternToString(getApplicationContext(),
R.string.operation_name,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)));
TextView labelOperationReportType = (TextView) mSearchDialog.findViewById(R.id.report_type_label);
labelOperationReportType.setText(PatternStringUtil.patternToString(getApplicationContext(),
R.string.label_operation_report_type,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)));
// 33
mSearchTextView = (EditText) mSearchDialog.findViewById(R.id.operation_name);
mSearchTextView.setOnKeyListener(new View.OnKeyListener() {
......@@ -1087,12 +1076,6 @@ public class OperationListActivity extends ABVUIActivity {
mPanoCotnentImageView.setImageBitmap(null);
FileUtil.delete(ABVEnvironment.getInstance().getCacheTempAttachedImageDirPath());
// リソースパターンを適用
TextView operationName = (TextView) mPanoEntryDialog.findViewById(R.id.settingLayout);
operationName.setText(PatternStringUtil.patternToInt(getApplicationContext(),
R.string.operation_name,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)));
// 閉じるボタン
mPanoEntryDialog.findViewById(R.id.closeBtn).setOnClickListener(new View.OnClickListener() {
......@@ -1368,12 +1351,6 @@ public class OperationListActivity extends ABVUIActivity {
mPushMessageListView.invalidate();
mPushMessageListView.setClickable(false);
// リソースパターンを適用
TextView operationName = (TextView) mPushMessageListDialog.findViewById(R.id.tv_operation_name_title);
operationName.setText(PatternStringUtil.patternToInt(getApplicationContext(),
R.string.operation_name,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)));
mPushMessageListDialog.findViewById(R.id.back_btn).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
......@@ -1492,11 +1469,6 @@ public class OperationListActivity extends ABVUIActivity {
R.string.free_input,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)) + " > ");
TextView titleOperationName = (TextView) mPushMessageSendDialog.findViewById(R.id.title_operation_name);
titleOperationName.setText(PatternStringUtil.patternToString(getApplicationContext(),
R.string.operation_name,
getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)));
TextView tvOperationName = (TextView) mPushMessageSendDialog.findViewById(R.id.operation_name);
tvOperationName.setText(operationDto.operationName);
......
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