나는 항상 안드로이드 문서 에서이 재미있는 무게 값에 대해 읽었습니다. 이제 처음으로 시도하고 싶지만 전혀 작동하지 않습니다.
설명서 에서이 레이아웃을 이해하면
<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>
수평으로 정렬되고 공간을 동일하게 공유하는 두 개의 버튼을 만들어야합니다. 문제는 공간을 채우기 위해 두 개의 버튼이 커지지 않는다는 것입니다.
버튼이 자라서 전체 줄을 채우고 싶습니다. 두 버튼이 모두 부모와 일치하도록 설정되면 첫 번째 버튼 만 표시되고 전체 줄을 채 웁니다.