«android-gridview» 태그된 질문

21
GridLayout (GridView 아님) 모든 자식을 균등하게 늘리는 방법
안에 버튼이있는 2x2 그리드를 갖고 싶습니다. 이것은 ICS이므로 주어진 새로운 GridLayout을 사용하려고합니다. 내 레이아웃의 XML은 다음과 같습니다. <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/favorites_grid" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" android:rowCount="2" android:columnCount="2"> <Button android:text="Cell 0" android:layout_row="0" android:layout_column="0" android:textSize="14dip" /> <Button android:text="Cell 1" android:layout_row="0" android:layout_column="1" android:textSize="14dip" /> <Button android:text="Cell 2" android:layout_row="1" android:layout_column="0" android:textSize="14dip" /> <Button …


2
두 개의 열과 자동 크기 조정 된 이미지가있는 그리드 뷰
두 개의 열로 그리드 뷰를 만들려고합니다. 나는이 이미지와 같이 행 당 두 장의 사진을 나란히 의미합니다. 그러나 내 사진의 크기가 같지 않기 때문에 사진 사이에 공백이 있습니다. 여기 내가 얻는 것이 있습니다. 보시다시피 첫 번째 사진은 연락처 이름과 전화 번호를 보여주는 범례를 숨 깁니다. 다른 사진은 올바르게 늘어나지 않습니다. 다음은 …

3
ListView의 재활용 메커니즘 작동 방식
그래서 나는 이전에이 문제가 있었고 당연히 여기 에 도움을 요청 했다 . Luksprog의 대답은 ListView와 GridView가 재활용 뷰로 어떻게 최적화되는지 전혀 알지 못했기 때문에 훌륭했습니다. 그래서 그의 조언으로 그리드 뷰에 뷰를 추가하는 방법을 변경할 수있었습니다. 문제는 이제 이해가되지 않는 것입니다. 이것은 getView나의 것입니다 BaseAdapter: public View getView(int position, View convertView, …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.