Chciałbym utworzyć okno dialogowe do wyświetlania tytułu i tagów wideo. Poniżej tekstu chciałbym dodać przyciski Wyświetl, Edytuj i Usuń oraz nadać tym elementom taki sam rozmiar. Czy ktoś wie, jak zmodyfikować plik układu .xml, aby elementy wewnątrz LinearView miały ten sam rozmiar?
Bieżący plik układu wygląda następująco:
<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>
Byłbym wdzięczny, gdyby ktoś mógł pokazać rozwiązanie, modyfikując zawartość wklejonego pliku.
Dzięki!
GridLayout
. W tym przypadku naprawdę stają się0px
szerokie. MożeGridLayout
nie akceptujelayout_weight
?GridLayout
zdecydowanie nie używalayout_weight
. To jest używane tylko przezLinearLayout
, a być może niektóre podklasyLinearLayout
.Innym sposobem jest zrobienie
android:layout_width="fill_parent"
iandroid:layout_weight="1"
to też będzie działało !!!źródło
Użyj LinearLayout z żądaną wagą i stwórz elementy o jednakowym layoucie_wagi . Oto przykład ...
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:weightSum="5"> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:src="@drawable/ic_share_white_36dp"/> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:src="@drawable/ic_search_white_36dp"/> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:src="@drawable/ic_event_note_white_36dp"/> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:src="@drawable/ic_brush_white_36dp"/> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:src="@drawable/ic_menu_white_36dp"/> </LinearLayout>
Tak więc suma wag wszystkich elementów wynosi 5. Oto zrzut ekranu ...
Pamiętaj, że używane są ikony Google Material Design . Mam nadzieję, że to jest pomocne.
źródło