내일은 단어왕 그 첫번째 이야기 내일은 단어왕 (영어단어편) 어이 단어? 그냥 외워 ??뭐 그냥 순서대로 외워??? 아놔... 모든 앱들이 다 이렇네요 그래서 만들어봤어요 내가 모르는 단어만 뽑아서 외울수 있도록 그냥 보기만 하는게 아니라 쓰기도 하고 듣기도 하고 또 공부라고 하면 벌써 잠이?? 그래서 게임하면서도 외울수 있도록... 자 소개합니다. 내일은 단어왕 (영어단어편) 오오오오 궁금해 하고 있군요 자 여기 앱은 3가지로 크게 나누어져 있어요 약 4000단어가까이 수록되어 있어서 직접 내가 얼마나 아는지 먼저 테스트 해볼 수 있는 스스로 테스트그리고 스스로 테스트 하면서 몰랐던 단어들이 자동으로 추가되어 있는 나만몰라 단어장 마지막으로 단어게임 지구 방위 사령부ㅎㅎㅎㅎ 안에 있는 내용은 안알랴쥼 ..
전체 검색 결과
Today I met error on android send SMS function with below error message "does not have android.permission.SEND_SMS" This problem came up on android API 23. I never met this kind of error under API 23. What I found solution is that first, give SEMD_SMS permission on AndroidManifest.xml file then, I implemented code like this // first, call address intent to get person mobile number public void se..
예전에 잘 사용하던 기능이었는데 갑자기 does not have android.permission.SEND_SMS 문구가 뜨면서 안되는 경우가 발생했습니다.문제는 API 23 이상버전을 사용했을때 요런 문제가 생기네요. ㅠㅠ 먼저 AndroidManifest.xml 파일일에 다음과 같은 권한을 줍니다. 그리고 문자보내기 해결방법은 아래와 같이 수정해서 해결했어요 // 먼저 핸드폰의 주소록을 불러와서 문자를 보낼 사람과 전화번호을 알아오도록 해 줍니다. public void sendBySMS() { Intent intent = new Intent(Intent.ACTION_PICK); intent.setData(ContactsContract.CommonDataKinds.Phone.CONTENT_URI); s..
코코스2d 개발환경에서 리스트뷰 클릭 이벤트가 호출 되지 않는경우가 있습니다 이럴때에는 아래처럼 해주면 쉽게 문제가 해결됩니다. 제가 찾은 방법? 또는 해줘야하는데 안해줘서 문제였던? 방법은 아래와 같습니다.먼저 리스트에 setTouchEnabled(true)를 세팅해주고 또, 리스트 아이템에도 setTouchEnabled(true)를 세팅해주니 문제가 해결되었습니다. 아래 코드를 참조해 보세요 [Header file]void initListView();void addItemIntoList(ListView* pListView); // event listen callback function for listview clickvoid cbListItemClickEvent(Ref *pSender, ListVie..
I realize that listview item click event is not working the specific case. In my case, Cocos2dx v.3.10What I found is that setTouchEnabled(true) for both (one for list , other for list item)To clearly check below code [Header file]void initListView();void addItemIntoList(ListView* pListView); // event listen callback function for listview clickvoid cbListItemClickEvent(Ref *pSender, ListView::Ev..
How to call vibrate effect in cocos2dx environment ? Here is simple example code to call vibrate effect in cocos2dThis sample based on C++ with Visual studioFirst, create service class to call vibrate whenever you want. [DeviceServices.h]class DeviceServices{public:DeviceServices();~DeviceServices(); // Android vibrate effect call methodvoid callVibrateEffect();}; [DeviceServices.cpp]#include "D..
Cocos2dx 개발환경에서 안드로이드 기기에서 진동을 호출 할려면?생각보다 간단해요^^간단한 설명과 함께 소스코드도 같이 올려 드릴께요 먼저 Visual Studio 개발환경에서 코드에요 (C++) 서비스 클래스를 만들어서 아무곳에서나 진동함수를 호출 할 수 있게 만들어 줍니다. [DeviceServices.h]class DeviceServices{public:DeviceServices();~DeviceServices(); // 진동 호출 함수void callVibrateEffect();}; [DeviceServices.cpp]#include "DeviceServices.h" DeviceServices::DeviceServices(){}DeviceServices::~DeviceServices(){} #..
Save Earth Amazing defense game published Someday alien attack our earth. Hire human to defense the planet. upgrade human to strong and powerful. here is start scene This app is not complicated. Very simpleYou don't need to study manual. Just press "Start" button Okey, Now alien attempt to attack our planet. What you need to do is that, Hire human and protect earth from enemy invasion. How to hi..
최근댓글