728x90 시작440 java 구분자로 자르기 String s; String[] array;// 콜론(:)으로 구분된 문자열 분해 s = "자장면:탕수육:짬뽕:칼국수"; array = s.split(":"); str1line = "1-16";String first = str1line.split("-")[0]; String second = str1line.split("-")[1]; 2018. 9. 6. TextInputLayout TextInputEditText 사용하기 *화면 설정 *변수 선언private TextInputLayout ti_1;private AppCompatEditText et_1;ti_1 = (TextInputLayout) findViewById(R.id.tl1line); et_1 = (AppCompatEditText) findViewById(R.id.et1line);Editable et1line = et_1.getText(); String str1line = et1line.toString(); 2018. 9. 6. apk 오류 : 패키지 구문을 확인 할 수 없습니다. 오늘 개발을 했는데 sdk 최소 버전을 너무 높게 했더니 오류가 나오면서 설치를 하지 못한다.자신의 스마트폰에 맞게 버전을 바꾸고 다시 apk 생성 apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.landofsky.landofsky" minSdkVersion 26 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false.. 2018. 9. 6. 중복 없애 데이터 넣기 중복된값은 자동으로 입력 되지 않는다. Set setNum = new HashSet(); setNum.add(randomInteger);if(setNum.size()>= 6){ break;} 2018. 9. 5. 이전 1 ··· 86 87 88 89 90 91 92 ··· 110 다음 728x90