안녕하세요.
아이템을 리스트뷰로 보여줍니다.
여기서 선택들 할 수 없는 아이템은 row 전체를 반투명하게 표시를 하려고 하는데요.
레이아웃은 아래와 같습니다.
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginTop="15dp" >
< 생략 >
</RelativeLayout>
</LinearLayout>
<com.XXX.Transparent
android:id="@+id/transparent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone" />
</RelativeLayout>
transparent를 조건에 따라 setVisibility(View.VISIBLE)를 하는데 화면에 보여지지 않습니다.
제가 뭔가 잘못 생각하고 있나요?
조언 부탁드립니다.