Programming/android2020. 5. 25. 21:03

음.. 일단은 앱이 종료되서 실패

 

[링크 : https://jizard.tistory.com/9] 버튼 이벤트 생성하기

 

AsyncTask 만들어서 하지 않아서 실패인듯
[링크 :
https://bcho.tistory.com/1050] RESTful API 호출하기 << 실패

[링크 : https://calvinjmkim.tistory.com/16]

 

이유는 모르겠으나 경고, 에러가 뜬다.

[링크 : https://proletariat.tistory.com/86] 액티비티 화면 방향 고정하기

'Programming > android' 카테고리의 다른 글

android studio - git 연동  (0) 2020.05.28
android studio - blueprint와 design  (0) 2020.05.28
안드로이드 앱 버튼 배치  (0) 2020.05.25
안드로이드 - 액티비티, 인텐트  (0) 2020.05.23
안드로이드 멀티터치 처리  (0) 2020.05.09
Posted by 구차니
Programming/android2020. 5. 25. 21:02

MFC 처럼 내가 원하는 위치에 마음대로 설정을 아직 하지는 못하겠네..

버튼을 그냥 두면 한곳에 포개지는데 레이아웃을 이용해서 포개지진 않게 해야 하는건가..?

책을 좀 더 봐야겠다.

 

 

[링크 : https://androidhuman.tistory.com/332]

Posted by 구차니
Programming/android2020. 5. 23. 22:05

튜토리얼 보면서 먼가 중요해 보이는 내용 정리중..

근데 먼 소리지? ㅠㅠ

 

app > java > com.example.myfirstapp > MainActivity
이것이 기본 활동입니다. 앱의 진입점입니다. 앱을 빌드하고 실행할 때 시스템에서 이 Activity의 인스턴스를 실행하고 레이아웃을 로드합니다.

 

[링크 : https://developer.android.com/training/basics/firstapp/creating-project?hl=ko]

 

Intent는 개별 구성요소(예: 두 개의 활동) 간에 런타임 바인딩을 제공하는 개체입니다. Intent는 어떤 작업을 하려는 앱의 의도를 나타냅니다. 매우 다양한 작업에 인텐트를 사용할 수 있지만 이 과정에서는 인텐트가 다른 활동을 시작합니다.

 

[링크 : https://developer.android.com/training/basics/firstapp/starting-activity?hl=ko]

 

[링크 : https://developer.android.com/guide/components/activities?hl=ko]

  [링크 : https://developer.android.com/guide/components/activities/activity-lifecycle?hl=ko]

  [링크 : https://developer.android.com/guide/components/activities/state-changes?hl=ko]

[링크 : https://developer.android.com/guide/components/intents-filters?hl=ko]

Posted by 구차니
Programming/golang2020. 5. 18. 21:53

go 에서 검색하기 힘드니 이제 golang이라고도 하는 듯

윈도우용  바이너리도 제공은 하는데 native 일려나?

 

[링크 : https://golang.org/dl/]

 

 

흐음.. 키워드만 봐서는 java, python이 떠오르네

[링크 : https://github.com/golang/go/wiki/Ubuntu]

'Programming > golang' 카테고리의 다른 글

golang gore(repl), delve  (0) 2022.03.31
go build 옵션  (0) 2022.03.31
go lang static http server  (0) 2022.03.10
go hello world build static / shared  (0) 2022.02.17
go lang rest  (0) 2022.02.11
Posted by 구차니
Programming/android2020. 5. 9. 13:23

조이스틱 같은 앱을 만드려면 두 개 이상의 터치에 대한 드래그를 처리해야 가능하겠군..

 

[링크 : https://developer.android.com/training/gestures/multi]

[링크 : https://bitsoul.tistory.com/169]

Posted by 구차니
Programming/android2020. 5. 9. 13:16

조이스틱 처럼 만들어 봐야 하나

아니면 버튼으로 해봐야 하려나? (버튼 다운/ 업 으로 구분?)

 

[링크 : https://wickies.tistory.com/103]

[링크 : https://code.tutsplus.com/ko/tutorials/android-from-scratch-using-rest-apis--cms-27117]

 

롱 클릭 이라는 것도 있네 몇초이려나?

[링크 : https://bitsoul.tistory.com/13]

Posted by 구차니
Programming/openGL2020. 4. 14. 21:49

GL_MODELVIEW와 GL_PROJECTION만 예제로 많이 보았는데

GL_COLOR와 GL_TEXTURE도 가능한 옵션(?)이다.

 

void glMatrixMode(GLenum mode);

GL_MODELVIEW
Applies subsequent matrix operations to the modelview matrix stack.

GL_PROJECTION
Applies subsequent matrix operations to the projection matrix stack.

GL_TEXTURE
Applies subsequent matrix operations to the texture matrix stack.

GL_COLOR
Applies subsequent matrix operations to the color matrix stack.

[링크 : https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMatrixMode.xml]

'Programming > openGL' 카테고리의 다른 글

glReadPixels() 와 glUseProgram()  (0) 2022.11.17
openCV + openGL  (0) 2022.02.08
opengl superbible 3rd 리눅스 빌드 패키지  (0) 2020.04.08
opengl super bible 3rd - 4,5 chapter  (0) 2020.04.06
openGL 책 보면서 정리중 - 챕터3  (0) 2020.04.05
Posted by 구차니
Programming/openGL2020. 4. 8. 21:05

2004년 책이라 안될줄 알았는데 다행이 몇개 패키지 설치하니 정상적으로 빌드되도 잘 작동된다.

 

$ sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
[링크 : http://www.codebind.com/linux-tutorials/install-opengl-ubuntu-linux/]

 

$ sudo apt-get install libxmu-dev libxi-dev
[링크 : https://ubuntuforums.org/showthread.php?t=1703770]



'Programming > openGL' 카테고리의 다른 글

openCV + openGL  (0) 2022.02.08
glMatrixMode()  (0) 2020.04.14
opengl super bible 3rd - 4,5 chapter  (0) 2020.04.06
openGL 책 보면서 정리중 - 챕터3  (0) 2020.04.05
glEnable(), glPushAttrib()  (0) 2020.04.04
Posted by 구차니
Programming/vulkan2020. 4. 6. 23:45

openGL 을 하고 나중에 vulkan을 보는게 좋으려나?

취미(?) 치고는 너무 가려는 건가?

 

[링크 : https://github.com/KhronosGroup/Vulkan-Samples]

[링크 : https://vulkan.lunarg.com/doc/sdk/1.1.106.0/windows/getting_started.html]

'Programming > vulkan' 카테고리의 다른 글

vulkan on macos  (0) 2022.04.27
vulkan tutorial  (0) 2022.04.27
nvidia vulkan graphics api  (0) 2016.02.17
Posted by 구차니
Programming/openGL2020. 4. 6. 21:51

아 정리하기 귀찮다 -ㅁ-

'Programming > openGL' 카테고리의 다른 글

glMatrixMode()  (0) 2020.04.14
opengl superbible 3rd 리눅스 빌드 패키지  (0) 2020.04.08
openGL 책 보면서 정리중 - 챕터3  (0) 2020.04.05
glEnable(), glPushAttrib()  (0) 2020.04.04
openGL superbible 3rd ed. 읽기 시작  (0) 2020.04.03
Posted by 구차니