목록공부 관련/안드로이드 스튜디오 (4)
먼지 쌓인 키보드
System.arraycopy( 배열1, 배열1의 복사시작번호, 배열2, 배열2의 복사시작번호, 복사길이) 의 형태를 띈다. 예제) A={a, b, c, d, e}; B={가, 나, 다, 라}; System.arraycopy(A, 1, B, 3, 2); A[1]부터 B[3]에 길이 2만큼 복사된다는 의미다. B[3]=A[1] //B[3]에 A[1]의 값이 복사됨 B[4]=A[2] //길이가 2니까 그 다음 값인 B[4]에 A[2] B={ B[0], B[1], B[2], A[1], A[2] }; Array_2의 배열값은 { 가, 나, 다, b, c }가 된다.
MPAndroidChart 기본 예제 참고 [안드로이드] MPAndroidChart 꺾은선 그래프 만들기 PhilJay/MPAndroidChart A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, dragging and animations. - PhilJay/.. under-desk.tistory.com 위의 기본 예제를 기반으로 하나의 차트에 2개의 그래프를 그리는 방법은 //chartData하나에 linedataset이 set1, set2로 두개의 라인을 가진 그래프 ArrayList entry1 = ne..
PhilJay/MPAndroidChart A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, dragging and animations. - PhilJay/MPAndroidChart github.com MPAndroidChart 링크 build.gradle (module:app) 여기에 추가하면 되고, repositories 없으면 추가하시면 됨. (버전은 추후에 바뀔수있으니 github 링크에서 확인 후 하시면 됩니다.) repositories { maven { url 'https://jitpack.io' }..
Expecting 'android:screenOrientation=“unspecified”' or '“fullSensor”' for this activity 방법 1. File -> Settings 2. Chrome 검색하셔서 3. Activity is locked to an orientation 체크 푸시면 됩니다.