mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
Fix horizontal (=landscape) call design
Without this fix, the call buttons became huge in landscape mode. The LinearLayout of the callControls now has a fixed width which comes in handy in landscape mode. Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
0fabb73058
commit
a6ff8da18b
1 changed files with 2 additions and 1 deletions
|
@ -181,8 +181,9 @@
|
|||
|
||||
<LinearLayout
|
||||
android:id="@+id/callControls"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/call_controls_height"
|
||||
android:layout_width="450dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:paddingHorizontal="@dimen/call_controls_padding_horizontal"
|
||||
android:layout_alignBottom="@id/linearWrapperLayout"
|
||||
android:animateLayoutChanges="true"
|
||||
|
|
Loading…
Reference in a new issue