티스토리 뷰


갑자기 잘되던 ListView가 안될때...

ListVIew의 item에 Button이 들어가면 Layout상에만 넣어두더라도 ListView는 통채로 클릭이 안된다.

<LINEARLAYOUT;
 android:layout_height="wrap_content"
 android:layout_width="fill_parent"
 android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<TEXTVIEW;
 android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<BUTTON;
 android:layout_height="wrap_content"
 android:layout_width="wrafill_parent">
</LINEARLAYOUT>

ListVIew 의 item에 있는 Button때문에 ListView가 클릭이 안되던것..
이때는 Button을 code상에서 정의해주고
ListView와 Button을 둘다
view.setFocusable(false);
를 해주면 정상적으로 클릭된다.
ListView말고도 Button에도 해주어야 하는 사실을 잊지말자.
댓글