목록분류 전체보기 (478)
한 걸음 두 걸음
목적 중요성 세부내용 왜 VR로 선정해야했는지 (반드시 VR이었어야했는가)
public class PrintScore : MonoBehaviour { void Start() { if(Question2_Score.test == 2) { result_score1.text = "Score : " + Question2_Score.score .ToString() + "점"; } if(Question3_Score.test == 3) { result_score1.text = "Score : " + Question3_Score.score.ToString() + "점"; } if(PT1_Score.test == 4) { result_score1.text = "Score : " + PT1_Score.score.ToString() + "점"; } } } Question3_Score.score 처럼..
cs188 ai http://ai.berkeley.edu/home.html Berkeley AI Materials Welcome to CS188! Thank you for your interest in our materials developed for UC Berkeley's introductory artificial intelligence course, CS 188. In the navigation bar above, you will find the following: A sample course schedule from Spring 2014 Complete set ai.berkeley.edu https://inst.eecs.berkeley.edu/~cs188/sp19/ Syllabus - CS 188..
MainActivity에서 private BroadcastReceiver mAlertReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { fromAlertStr = intent.getStringExtra("alertStr"); ListElementsArrayList.add(fromAlertStr); adapter.notifyDataSetChanged(); } };로 브로드캐스트리시버 만들어주고, @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setCon..
ArrayList는 객체 내부에서 배열을 관리하는 것으로, 한 번 생성하면 자동으로 길이가 조절되기 때문에 사용하기 편합니다. ArrayList str = new ArrayList();으로 만들 수 있습니다. 데이터추가 add(element)르 ㄹ사용합니다. 데이터접근 get(index) 데이터삭제 remove(index) 등으로 사용합니다. ArrayList의 특징 데이터의 순서가 있으며 배열과 같이 데이터 저장을 인덱스 기반으로 수행합니다. 같은 자료형들을 저장합니다. index는 0부터 시작합니다. 사용예시는 다음과 같습니다. 1. 큐처럼 사용하기 ArrayList arr = new ArrayList(); arr.add(1); arr.add(2); arr.add(3); // arr = 1/2/3 /..
사용 : MainActivity.java & activity_main.xml 두 개만 사용하였음. activity_main.xml은 간단하기 그지없다. 사실 없어도 되는데 디버깅용 textview 두 개 쓴게 끝이다. 위에 숫자는 이번에 안썼음 package kr.ac.koreatech.swkang.msp02_orientationsensor; import android.content.Context; import android.content.Intent; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.Sens..
안드로이드에 내장된 센서를 통해 실내와 실외를 구분하는 방법은 1. 조도센서(빛의밝기) 2. GPS 3. WiFi 등이 있습니다. 1번 조도의 경우 실내가 실외보다 어둡다는 점을 이용한 것이지만 실외에 있을 때 핸드폰을 주머니나 가방에 넣고다니는 경우를 잡아내지 못하므로 정확성이 떨어집니다. 2번 GPS의 경우 실내에 있을 때 위도와 경도 값이 업데이트되지 않는 점을 이용하여 실내에있는지 실외에 있는지 구별할 수 있습니다. (onLoctionChanged함수에서 지속적으로 위도경도 값 업데이트가 가능합니다.)하지만 가끔 실내에 있을 때도 GPS값이 잡힐 때가 있어 추천하지 않습니다. 그리고 타임 스레드를 돌려가며 이전값과 일치하는지 일치하지않는지 확인하는 작업의 부하가 많이 걸릴 수 있습니다. GPS를 ..