|
@@ -38,6 +38,7 @@ public class PopupNewMemo extends WpadScreen {
|
|
WpadTextView InstructionText;
|
|
WpadTextView InstructionText;
|
|
|
|
|
|
Context mContext;
|
|
Context mContext;
|
|
|
|
+ private int mModelType = Version.getModelType();
|
|
|
|
|
|
public PopupNewMemo(Context context, RelativeLayout layout, WallPadAPI wpapi, int operationMode) {
|
|
public PopupNewMemo(Context context, RelativeLayout layout, WallPadAPI wpapi, int operationMode) {
|
|
super(context, layout);
|
|
super(context, layout);
|
|
@@ -64,8 +65,11 @@ public class PopupNewMemo extends WpadScreen {
|
|
ViewRegistration(layout, m_NewDrawing, Common.PopupAlarmMarginLEFT(196), Common.PopupAlarmMarginTOP(585));
|
|
ViewRegistration(layout, m_NewDrawing, Common.PopupAlarmMarginLEFT(196), Common.PopupAlarmMarginTOP(585));
|
|
m_NewAudio = new WpadImageView(context, TOUCH_KIND.BUTTON, 290, 80, R.drawable.btn_voice_normal3, R.drawable.btn_voice_pressed3, ID.NewMemoPopupID.button.NEW_AUDIO);
|
|
m_NewAudio = new WpadImageView(context, TOUCH_KIND.BUTTON, 290, 80, R.drawable.btn_voice_normal3, R.drawable.btn_voice_pressed3, ID.NewMemoPopupID.button.NEW_AUDIO);
|
|
ViewRegistration(layout, m_NewAudio, Common.PopupAlarmMarginLEFT(495), Common.PopupAlarmMarginTOP(585));
|
|
ViewRegistration(layout, m_NewAudio, Common.PopupAlarmMarginLEFT(495), Common.PopupAlarmMarginTOP(585));
|
|
- m_NewVideo = new WpadImageView(context, TOUCH_KIND.BUTTON, 290, 80, R.drawable.btn_video_normal3, R.drawable.btn_video_pressed3, ID.NewMemoPopupID.button.NEW_VIDEO);
|
|
|
|
- ViewRegistration(layout, m_NewVideo, Common.PopupAlarmMarginLEFT(794), Common.PopupAlarmMarginTOP(585));
|
|
|
|
|
|
+ if(mModelType != Version.MODEL_TYPE.IHN_1010_I_2443)
|
|
|
|
+ {
|
|
|
|
+ m_NewVideo = new WpadImageView(context, TOUCH_KIND.BUTTON, 290, 80, R.drawable.btn_video_normal3, R.drawable.btn_video_pressed3, ID.NewMemoPopupID.button.NEW_VIDEO);
|
|
|
|
+ ViewRegistration(layout, m_NewVideo, Common.PopupAlarmMarginLEFT(794), Common.PopupAlarmMarginTOP(585));
|
|
|
|
+ }
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
m_NewDrawing = new WpadImageView(context, TOUCH_KIND.BUTTON, 360, 80, R.drawable.btn_picture_normal2, R.drawable.btn_picture_pressed2, ID.NewMemoPopupID.button.NEW_DRAWING);
|
|
m_NewDrawing = new WpadImageView(context, TOUCH_KIND.BUTTON, 360, 80, R.drawable.btn_picture_normal2, R.drawable.btn_picture_pressed2, ID.NewMemoPopupID.button.NEW_DRAWING);
|