목록Android (5)
먼지 쌓인 키보드
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 체크 푸시면 됩니다.
KORG Kaossilator for Android - Google Play 앱 Android OS를 위한 모바일 신디사이저. "Android용 KORG Kaossilator"는 손가락을 터치패널 위에서 자유롭게 움직이는 것만으로 누구나 완전한 성능의 악기를 즐길 수 있도록 해주는 신디사이저 앱입니다. 전자음향에서부터 어쿠스틱 악기 및 드럼까지 다양한 종류의 음향을 한손가락으로 연주할 수 있습니다. 또한 작곡하는 데 있어서 빼놓을 수 없는 시퀀서까지 제공됩니다. 이로써 자신의 연주를 레코딩하거나 레이어화하여 트랙을 만들 수 있습니다. play.google.com "Android용 KORG Kaossilator"는 손가락을 터치패널 위에서 자유롭게 움직이는 것만으로 누구나 완전한 성능의 악기를 즐길 수 있..