<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ItemListActivity">
<fragment android:name="de.dbruhn.android.activatedstatedemo.ItemListFragment"
android:id="@+id/item_list"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.3" />
<FrameLayout android:id="@+id/item_detail_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.7"
android:background="#D14424" />
</LinearLayout>

이런 모양의 레이아웃을 구현중인데요
왼쪽의 레이아웃을 리스트뷰로 구현을 했거든요
그런데 그냥 아이템클릭 리스너를 사용해서 저 효과를 주니깐, 다른아이템을 클릭했을때도,
저 맨처음에 클릭했을때의 효과가 남아있더라구요 ㅠ (한마디로 두개가 클릭된거처럼 보인다는...ㅠ)
이거관련 방법이 있으면 알려주시면 감사하겠습니다ㅠㅠㅠ!