목록안드로이드 (401)
설.현.아빠
http://www.androidpub.com/122792
특정문자로 String을 자른후 배열에 넣기!! import! java.util.*; String example = "test1|test2|test3|test4"; StringTokenizer st = new StringTokenizer(example ,"|"); String[] array_example = new String[st.countTokens()]; while (st.hasMoreTokens()) { int i=0; array_example [i] = st.nextToken(); i++; } 또는 java 4.x버전 이상에서 String str = "12_345_7"; String results[] = str.split("_"); for( int i=0; i
A StringTokenizer object internally maintains a current position within the string to be tokenized. Some operations advance this current position past the characters processed. A token is returned by taking a substring of the string that was used to create the StringTokenizer object. The following is one example of the use of the tokenizer. The code: StringTokenizer st = new StringTokenizer("thi..
JAVA String형 문자열 비교하기... 어찌보면 굉장히 기본적인건데... 모르고 있었다-_-... Android도 기본적으론 JAVA언어를 쓰니... 프로그램짜는데 아무리 == 으로 비교를 때려도 안나오지 ㄷㄷㄷ 그래서 알아보게 되었다 사실 == 으로 비교해서 안되는건 아니다. String형 선언하는 방법은 2가지 1. String a; 2. String b = new String(); 1번으로 String을 선언했을경우는 ==으로 연산이 가능하다.. 아래의 코드는 1, 2의 방법으로 변수를 선언하고 문자열의 비교, 대소문자를 비교하는 코드이다. [출처] [JAVA] String형 비교하기, 문자열 비교하기
http://www.javastudy.co.kr/docs/techtips/020608.html
한참 삽질했다...ㅠㅠ 오늘은 손댄소스 다 엎어 버렸다..ㅠㅠ 이럴때 마다 좌절...좌절...OTLLLLLLLLLLLLLLLLLL 하나 건진거.. String.xml에 아래와 같이 저장해 두고 Hello World, KensCafe! 자바 코드에서는 getString(R.string.hello); 이렇게 가져다 쓰면된다는거...아놔... 레이아웃 파일에서는 android:text="@string/hello" 이렇게... 결국에 책에서 방법을 찾는구나~~
가끔 귀찮다면 이렇게! [Intro] TextView를... 즉 글씨를 다루다 보면 폰트 설정 하는게 여간 귀찮은게 아닙니다. 14dip가 화면상에서 얼마나 큰지는 직접 찍어봐야 아는것이죠... 그냥 단순히 큰 글씨! 작은 글씨!를 보여주고 싶다~라고 할 때 이 방법을 사용해 보시죠! [R.attr?] 이 녀석은 참 흥미로운 녀석입니다. 제가 다 뜯어 보진 않았지만... 뭔가 복잡한 속성 세팅을 한방에 해결해 주는 녀석이죠. 꼭 TextView에만 쓰이는건 아닙니다. ProgressBar를 만들 때도 쓰이더군요... (사실 ProgressBar의 노란 그래디언트 부분은 이미지가 아니라 GradientDrawable에 R.attr의 값중 하나를 세팅한겁니다! 놀라워라...) [R.attr.textAppea..
Clipboard 를 이용하여 copy & paste를 할 수 있는 sample입니다. 참고 동영상 http://www.youtube.com/watch?v=ofQqhJ_fa2M&feature=channel 예제) ClipboardTest.java import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.text.ClipboardManager; import android.view.View; import android.widget.EditText; public class ClipboardTest extends Ac..