일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Row
- Flutter 앱 배포
- Image.network
- ListView.builder
- node.js
- flutter
- MainAxisAlignment
- AppBar
- Column Widget
- HTTP
- navigator
- Snackbar
- Row Widget
- Hello World
- Load Image
- 반석천
- sqlite
- Networking
- listview
- Flutter Tutorial
- CrossAxisAlignment
- WillPopScope
- Flutter 강좌
- Flutter Example
- ListTile
- FutureBuilder
- Flutter 예제
- InkWell
- Cached Image
- Scaffold
- Today
- Total
목록Development/Android (44)
꿈꾸는 시스템 디자이너
USB Accessory(USB 악세사리) In this document Choosing the Right USB Accessory APIs Installing the Google APIs add-on library API Overview Usage differences between the add-on library and the platform APIs Android Manifest Requirements Working with accessories Discovering an accessory Obtaining permission to communicate with an accessory Communicating with an accessory Terminating communication with ..
아두이노 Mega ADK와 넥서스S와의 연동이 성공하였다. 그 방식은 아래의 사이트에 설명되어 있다. http://developer.android.com/guide/topics/usb/adk.html 위의 사이트의 설명을 따라가면서 연결을 시도할 때 유의해야 할 사항은 다음 두가지 있다. 1. Arduino S/W 1.0이 아닌 '0023' 버전에서 demokit.pde의 컴파일이 가능하다. 이는 1.0으로 업데이트 되면서 라이브러리 구성이 많이 변경되었다. '0023' 버전에서는 문제없이 컴파일되고 아두이노로 upload 된다. 2. demokit.pde 파일 수정 필요 앞서 설명한 것처럼 demokit.pde 파일을 upload하면 아무런 반응이 없다. 이 때문에 며칠을 고민해오다가 소스를 하나하나 ..
구글의 ADK 개발자 웹사이트를 따라 펌웨어를 ADK 보드로 인스톨 할때 "WProgram.h"를 찾을 수 없다는 에러를 만나게 된다. 이는 Arduino Software(IDE) 1.0부터 WProgram.h가 Arduino.h 파일로 변경되었기 때문이다. 에러가 발생하는 헤더 파일들을 열어서 헤더 파일명을 변경하면 에러를 잡을 수 있다. 이 밖에도 아래와 같은 에러들이 발생한다. demokit.cpp: In function 'char read_joy_reg(char)': demokit.pde:-1: error: 'class TwoWire' has no member named 'send' As of Arduino 1.0, the Wire.send() function was renamed to Wire...
구글은 안드로이드 플랫폼 2.3.4부터 Android Open Accessory Development Kit(ADK)를 제공하고 있다. 쉽게 말하면, 안드로이드와 연동 가능한 USB 장치를 만들기 위한 H/W 표준과, S/W 라이브러리를 의미하는 것이다. 안드로이 개발자 웹사이트를 참조하면 이미 꽤 많은 제조사들로부터 개발보드가 출시되어 있는 상황이다. 아래 사진은 Arduino Team에서 개발한 Arduino Mega ADK 보드이다. 그리고 아래와 같은 특징을 가진다. Microcontroller ATmega2560 Operating Voltage 5V Input Voltage (recommended) 9V Input Voltage (limits) 7-18V Digital I/O Pins 54 (o..
guava-libraries를 추가한다. download link http://code.google.com/p/guava-libraries/ setting properties -> Java Build Path -> Libraries -> add External JARs 다운로드한 jar파일을 링크시킨다.
아래의 내용을 추가
소스참조: 안드로이드 프로그래밍 정복 암시적인 인텐트 activity 실행 방법은 아래와 같다. 명시적 인텐트 사용을 인텐트를 받아갈 activity를 명시적으로 기술하지만, 암시적 인턴트 사용법에서는 전달한 인텐트와 그 인텐트의 종류만을 사용하여 activity를 호출한다. 즉 사용자마다 서로 다른 app(activity)가 호출될 수 있다. public void mOnClick(View v) { //인텐트 생성 Intent intent; switch (v.getId()) { case R.id.web: //웹브라우저 activity 실행 intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")); startActivity(in..
main Activity는 child Activity를 생성하여 데이터를 전달하고, 데이터를 전달받은 child Activity는 데이터를 사용하고 그 결과를 main Activity(parent Activity)로 전달할 수 있다. 1. Intent 생성 및 전달 과정(in main Activity) //Intent 생성 Intent intent = new Intent(this, ActEdit.class); //생성한 Intent에 데이터 입력 intent.putExtra("TextIn", mText.getText().toString()); //생성한 Intent 전달(child Activity로 전환) startActivityForResult(intent,ACT_EDIT); 2. Intent를 전달받..