아래는 코모스튜디오가 직접 만든 무료 앱이에요(한 번만 봐주세요 ^^)
java.lang.NumberFormatException: For input string: "-1.0"
String val = "-1"
Interger.valueOf(val)
--> ERROR
int a = 0;
try{
a = Interger.valueOf(val)
} catch(NumberFormatException e){
double d = Double.parseDouble(val)
a = (int)d;
}
요렇게 하자.
' [안드로이드 공부] > UI' 카테고리의 다른 글
import org.apache.http.NameValuePair 에러 (0) | 2018.10.01 |
---|---|
inputchannel is not initialized (0) | 2018.09.27 |
Resources$NotFoundException: Resource ID #0x0 in AlertDialog (0) | 2018.09.14 |
Error : BinderProxy@ is not valid; is your activity running? (0) | 2018.09.10 |
안드로이드 UI NumberPicker TextColor, TextSize, Highlight 색깔 바꾸기 (0) | 2018.03.27 |
모든 게시물은 코모스튜디오의 소유이며, 무단 복제 수정은 절대 불가입니다. |
퍼가실 경우 댓글과 블로그 주소를 남기고 해당 게시물에 출처를 명확히 밝히세요. |