<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageView" android:layout_alignParentTop="true" android:src="@drawable/streaming" android:layout_above="@+id/upButton" />
<resources> <!-- Default screen margins, per the Android Design guidelines. --> <dimen name="activity_horizontal_margin">0dp</dimen> <dimen name="activity_vertical_margin">0dp</dimen> </resources>
이미지 좌우의 여백을 모두 없앴다. 뭐가 이래 복잡하게 연결을 타고 타고 가서 설정을 해 놓은거야? 알고 보면 다 이유가 있어서 그랬겠지만 초보자에겐 혼란 스러울 뿐이다. res>values>demens.xml의 내용에서 마진값을 모두 제거 했다.
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:drawableTop="@drawable/up" android:text="UP" android:id="@+id/upButton" android:adjustViewBounds="true" android:scaleType="fitXY" android:layout_centerVertical="true" android:layout_centerHorizontal="true" />
android:drawableTop="@drawable/up" 를 통해 up.png라는 이미지를 버튼의 한쪽에 넣어 주었다. 그런데 크기 조절이 마음대로 되지 않는다. 버튼 자체의 크기를 조절해서 아이콘이미지의 크기를 조절하는 방식인가? 아이콘 이미지 자체의 크기를 조절하는 옵션을 찾을 수 없다.