티스토리 뷰
dataText 는 필터 걸기 전 전체 텍스트,
searchText 는 강조하고 싶은 텍스트
public SpannableStringBuilder spannableStringBuilder(String dataText, String searchText) {
SpannableStringBuilder sp = new SpannableStringBuilder(dataText);
List<data> data = new ArrayList<>();
for (int i=0; i<dataText.length(); i++) {
String b;
try {
b = dataText.substring(i,i+searchText.length());
}catch (Exception e) {
continue;
}
if (b.equals(searchText)) {
data.add(new data(i,searchText.length()));
}
}
for (int i=0; i<data.size(); i++) {
sp.setSpan(new ForegroundColorSpan(Color.RED), data.get(i).location,data.get(i).location + data.get(i).count, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
return sp;
}
class data {
int location;
int count;
public data(int location, int count) {
this.location = location;
this.count = count;
}
}
'android' 카테고리의 다른 글
로또 open api 레트로핏 예제 (0) | 2019.06.14 |
---|---|
외부 키 입력 받기, (0) | 2019.06.12 |
이미지 텍스트뷰 안에 텍스트 처럼 보여주기.. (0) | 2019.05.21 |
안드로이드 git, local.properties 제외시키는 방법. gitignore 사용법 (0) | 2019.05.13 |
에디트텍스트 포커스(커서) 관리. 키보드올라와 있을 때 백(onBackPressed)버튼 감지 (0) | 2019.05.08 |
- Total
- Today
- Yesterday
- 명령어
- 구글 맵 경로 그리기
- ubunut android
- 함수형 코드
- MongoDB
- mongo db
- text 부분 색 칠하기
- https://hwan-shell.tistory.com/244
- React Native
- 안드로이드
- 차번호 정규표현식
- spannableText
- insert
- 데이터베이스
- 구글 맵 선그리기
- Android
- 차번호 정규식
- 귀찮아;;
- not working adb
- nosql
- react native state
- adb 환경변수
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 자바
- 클래스형 코드
- rn
- not found adb
- ubunut 설치 link
- not starting .bash_profile
- mac android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |