|
@@ -123,24 +123,29 @@ public class VisitorVideoScreen extends WpadScreen {
|
|
|
for (int i = 0; i < LIST_CNT; i++) {
|
|
|
bVideoCheck[i] = false;
|
|
|
|
|
|
+ int index = i;
|
|
|
+
|
|
|
if (i == 3) {
|
|
|
nPicGuide_X = Common.ImgPosion.GetX(72);
|
|
|
nPicGuide_Y += 271;
|
|
|
nTextGuide_X = Common.ImgPosion.GetX(72);
|
|
|
nTextGuide_Y += 271;
|
|
|
}
|
|
|
+
|
|
|
+ // jglee - 화면 좌표가 i가 3일경우부터 밀리기 때문에 좌표 조정 필요
|
|
|
+ if(index >= 3) index = index-3;
|
|
|
// Log.e(TAG, "[VideoListBox] i [" + i + "], nPicGuide_X [" + nPicGuide_X + "]");
|
|
|
|
|
|
mVideoPreview[i] = new WpadImageView(context, WpadImageView.TOUCH_KIND.NONE, 287, 216, R.drawable.video_list_viewer, 0, ID.VisitorVideoMainID.image.VIDEO_PREVIEW_01 + i);
|
|
|
- ViewRegistration(layout, mVideoPreview[i], nPicGuide_X + (i * 1), nPicGuide_Y);
|
|
|
+ ViewRegistration(layout, mVideoPreview[i], nPicGuide_X + (index * 1), nPicGuide_Y);
|
|
|
mVideoPreview[i].setVisibility(View.INVISIBLE);
|
|
|
|
|
|
mVideoCheck[i] = new WpadImageView(context, WpadImageView.TOUCH_KIND.BUTTON, 288, 216, R.drawable.video_check_normal, R.drawable.video_check_pressed, ID.VisitorVideoMainID.button.CHECK_01 + i);
|
|
|
- ViewRegistration(layout, mVideoCheck[i], nPicGuide_X + (i * 1), nPicGuide_Y);
|
|
|
+ ViewRegistration(layout, mVideoCheck[i], nPicGuide_X + (index * 1), nPicGuide_Y);
|
|
|
mVideoCheck[i].setVisibility(View.INVISIBLE);
|
|
|
|
|
|
mVideoInfoText[i] = new WpadTextView(context, false, 287, 54, Gravity.CENTER, Color.WHITE, Common.fontsize._21, false, ID.VisitorVideoMainID.text.VIDEO_TEXT_01 + i);
|
|
|
- ViewRegistration(layout, mVideoInfoText[i], nTextGuide_X + (i * 1), nTextGuide_Y);
|
|
|
+ ViewRegistration(layout, mVideoInfoText[i], nTextGuide_X + (index * 1), nTextGuide_Y);
|
|
|
|
|
|
nPicGuide_X += 289;
|
|
|
nTextGuide_X += 289;
|