0
의 왼쪽 측에 정렬. 문제를 해결할 수 있도록 숫자를 더 가까이 가져 오려고했지만 실패했습니다. 'columnWidth'와 'none'과 같은 stretchMode를 가지고 놀면 내 문제를 해결할 수 없습니다. 배경의 흰색 영역에 숫자를 넣을 수있는 방법을 제안 해주세요.GRIDVIEW 아래와 같이 FrameLayout이 I가 내 화면의 GridView이
xml 파일 : 그리드보기에 왼쪽 여백을주는
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/paperbck"
android:columnWidth="30dp"
android:gravity="center"
android:horizontalSpacing="20dp"
android:numColumns="4"
android:stretchMode="columnWidth"
android:verticalSpacing="20dp" />
</FrameLayout>
</LinearLayout>
이 작업이 수행되지 않았습니다. 하지만 지금은 내가 찾은 검색 : 안드로이드 : paddingLeft = "20dp"내 문제를 해결했지만 그것이 스마트 방법인지 모르겠다. Thx 그래도 – Umitk
예 ... 패딩은 더 좋은 방법입니다. 미리 가서 의심없이 사용하십시오. 나는 당신에게 어떤 식 으로든 paddingleft를 사용하는 것에 대해 말하려고했다. :) –