drawable-hdpi/draw_focus.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#00f89000" />
<stroke android:color="#fff89000" android:width="2.5dp" />
<padding android:left="3dp" android:top="3dp" android:right="3dp" android:bottom="3dp" />
<corners android:radius="4dp" />
</shape>
code 적용
//리스트의 포커스에 적용해준다.
_list.setDrawSelectorOnTopDrawable(true, getResources().getDrawable(R.drawable.draw_focus));
'구글과인터넷 > 안드로이드' 카테고리의 다른 글
안드로이드 포커스를 가주가는 컨트롤 문제 일시적 해결방법 - 리스트의 버튼이나 체크박스, 에디트 박스 경우 (0) | 2012.12.12 |
---|---|
안드로이드 - 리스트에 버튼류이나 체크박스 주의 (0) | 2012.12.12 |
Android|안드로이드 - Fragment 에 대하여. (commit(), commitAllowingStateLoss() 관련) (0) | 2012.12.12 |