18
안드로이드의 선형 레이아웃 및 무게
나는 항상 안드로이드 문서 에서이 재미있는 무게 값에 대해 읽었습니다. 이제 처음으로 시도하고 싶지만 전혀 작동하지 않습니다. 설명서 에서이 레이아웃을 이해하면 <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:text="Register" android:id="@+id/register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dip" weight="1" /> <Button android:text="Not this time" android:id="@+id/cancel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dip" weight="1" /> </LinearLayout> 수평으로 정렬되고 공간을 동일하게 공유하는 두 …