336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

https://stackoverflow.com/questions/13579953/how-can-i-paste-100000-without-it-being-shortened-to-1e05

 

How can I paste 100000 without it being shortened to 1e+05?

Question: How can I use paste without 100000 becoming 1e+05? Sorry in advance if this question seems frivolous (but it has resulted in a bug in my code). I use R to call an external script, so wh...

stackoverflow.com

 

R> options("scipen"=10) # set high penalty for scientific display

'Programming' 카테고리의 다른 글

[RStudio] 텍스트 마이닝 코드  (0) 2023.11.12

R.java import 에러

Programming/Android 2012. 11. 27. 08:05 Posted by TanSanC
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

R.java import 에러


문제 :

 R.id.xxxx  의 xxxx 가 에러가 나는 경우가 있다.


해결방법1. [Project]->[Clean] 

하지만 후에도 해결되지 않는 경우가 있다.


해결방법2. java 파일 상단의 import android.R;

을 제거한다.

'Programming > Android' 카테고리의 다른 글

다중 액티비티 예제  (0) 2013.03.23
안드로이드 레이아웃 예제  (0) 2013.03.16
안드로이드 실습  (0) 2013.03.09
Intent 활용하기  (0) 2013.03.08
ubuntu 에 jdk 간편하게 설치하기  (0) 2013.02.27