Tôi muốn tạo một hộp thoại để hiển thị tiêu đề video và các thẻ. Văn bản dưới đây, tôi muốn thêm các nút Xem, Chỉnh sửa và Xóa và làm cho các phần tử này có cùng kích thước. Có ai biết cách sửa đổi tệp bố cục .xml để làm cho các phần tử bên trong LinearView có cùng kích thước không?
Tệp bố cục hiện tại trông giống như sau:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txtTitle" android:text="[Title]" >
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txtTags"
android:text="[Tags]" >
</TextView>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnPlay"
android:text="View">
</Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnEdit"
android:text="Edit">
</Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnDelete"
android:text="Delete">
</Button>
</LinearLayout>
</LinearLayout>
Tôi sẽ đánh giá cao nếu ai đó có thể chỉ ra giải pháp bằng cách sửa đổi nội dung tệp đã dán.
Cảm ơn!