.apptype = TBT_APP_LOCAL_MPEG4,
.icon_name = "dummy",
.file_name = "video/sampleMPEG4.mp4",
- .info = "1. Press <b>Play</b> button to Play Mpeg4 video file"
- "2. Press Pause to pause the video."
- "3. Press Stop to stop the video.",
+ .info = "1. Press <b>Play</b> button to Play Mpeg4 video file",
.result = 0
},
#endif
.apptype = TBT_APP_LOCAL_H263,
.icon_name = "dummy",
.file_name = "video/sampleH263.3gp",
- .info = "1. Press <b>Play</b> button to Play H263 video file"
- "2. Press Pause to pause the video."
- "3. Press Stop to stop the video.",
+ .info = "1. Press <b>Play</b> button to Play H263 video file",
.result = 0
},
#endif
.apptype = TBT_APP_LOCAL_H264,
.icon_name = "dummy",
.file_name = "video/sampleH264.mp4",
- .info = "1. Press <b>Play</b> button to Play H264 video file"
- "2. Press Pause to pause the video."
- "3. Press Stop to stop the video.",
+ .info = "1. Press <b>Play</b> button to Play H264 video file",
.result = 0
},
#endif
this->view = calloc(1, sizeof(common_view));
RETVM_IF(!this->view, NULL, "calloc failed");
-// if(tbt_info->apptype == TBT_APP_NFC_TAG)
-// {
- tbt_info->layout_group = "5_part_cnt_txt_cnt_btn_btn";
- tbt_info->layout_file = get_edje_path("5_part_cnt_txt_cnt1.25_btn_btn.edj");
+ if(tbt_info->apptype == TBT_APP_NFC_TAG)
+ {
+ tbt_info->layout_group = "nfc_viewer_tag";
+ tbt_info->layout_file = get_edje_path("nfc_viewer.edj");
-// }
-// else if(tbt_info->apptype == TBT_APP_NFC_P2P)
-// {
-// tbt_info->layout_group = "nfc_viewer_p2p";
-// tbt_info->layout_file = get_edje_path("nfc_viewer.edj");
-// }
+ }
+ else if(tbt_info->apptype == TBT_APP_NFC_P2P)
+ {
+ tbt_info->layout_group = "nfc_viewer_p2p";
+ tbt_info->layout_file = get_edje_path("nfc_viewer.edj");
+ }
common_view_add(navi, tbt_info, item, this->view, _app_destroy_cb, this);
RETVM_IF(!this->view, NULL, "view NULL after common_view_add");
is_tab_1_clicked = true;
this->nfc_label = ui_utils_label_add(this->view->layout, "NFC Read");
- elm_object_part_content_set(this->view->layout, "1cnt_2txt", this->nfc_label);
+ elm_object_part_content_set(this->view->layout, "nfc_text", this->nfc_label);
this->nfc_list = elm_list_add(this->view->layout);
RETVM_IF(!this->nfc_list, NULL, "elm_list_add failed");
evas_object_data_set(this->nfc_list, "nfc_view", this);
- elm_object_part_content_set(this->view->layout, "1cnt_2txt_3cnt", this->nfc_list);
+ elm_object_part_content_set(this->view->layout, "nfc_list", this->nfc_list);
initialize_nfc(this);