-
-
Notifications
You must be signed in to change notification settings - Fork 387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4063: Make dialog size more stable #4066
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
|
@@ -11,28 +12,53 @@ | |
android:layout_width="match_parent" | ||
android:layout_height="0dp" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can layout height be set to match_parent here so you don't have to set it in whatever you are doing in the onStart block? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the image view (with layout_weight=1). The things in the onStart influence the window/dialog. Normally an (alert) dialog implicitly has something like "wrap_content" that is overwritten there. |
||
android:layout_weight="1" | ||
android:contentDescription="@string/post_media_image"/> | ||
android:contentDescription="@string/post_media_image" /> | ||
|
||
<com.google.android.material.textfield.TextInputLayout | ||
style="@style/TuskyTextInput" | ||
|
||
android:layout_width="match_parent" | ||
android:layout_height="0dp" | ||
android:layout_weight="1" | ||
android:layout_marginStart="?dialogPreferredPadding" | ||
android:layout_marginTop="?dialogPreferredPadding" | ||
android:layout_marginEnd="?dialogPreferredPadding" | ||
app:hintEnabled="false" | ||
android:layout_marginTop="?dialogPreferredPadding" | ||
app:counterEnabled="false" | ||
app:counterTextColor="?android:textColorTertiary"> | ||
app:counterTextColor="?android:textColorTertiary" | ||
app:hintEnabled="false"> | ||
|
||
<com.google.android.material.textfield.TextInputEditText | ||
android:id="@+id/imageDescriptionText" | ||
android:inputType="textCapSentences|textMultiLine|textAutoCorrect" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:hint="@string/hint_description" | ||
android:gravity="start" | ||
android:importantForAutofill="no" /> | ||
android:hint="@string/hint_description" | ||
connyduck marked this conversation as resolved.
Show resolved
Hide resolved
|
||
android:importantForAutofill="no" | ||
android:inputType="textCapSentences|textMultiLine|textAutoCorrect" /> | ||
|
||
</com.google.android.material.textfield.TextInputLayout> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="0" | ||
android:orientation="horizontal" | ||
android:gravity="end" | ||
android:layout_marginStart="?dialogPreferredPadding" | ||
android:layout_marginEnd="?dialogPreferredPadding"> | ||
|
||
<Button | ||
android:id="@+id/cancelButton" | ||
style="@style/TuskyButton.TextButton" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@android:string/cancel" /> | ||
|
||
<Button | ||
android:id="@+id/okButton" | ||
style="@style/TuskyButton.TextButton" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@android:string/ok" /> | ||
</LinearLayout> | ||
</LinearLayout> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think instead of just assuming it is an audio file when loading fails I'd rather pass an explicit flag. The flag could also be used to display a different hint that makes more sense for audio files.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was wondering (and didn't quickly find) how to find the type of the media thing.
Because always putting it in Glide says that the code expects an image there - which it probably shouldn't.