Status Update
Comments
js...@gmail.com <js...@gmail.com>
mi...@gmail.com <mi...@gmail.com> #2
This also brings back dialog content size animations issues :( But on all devices this time.
See attached video
Repro:
Dialog(
onDismissRequest = {
if (dialogState.canDismiss.value) {
dialogNavigator.hide()
}
},
properties = properties,
content = {
Surface(
modifier = modifier
.safeContentPadding()
.fillMaxWidth(0.8f)
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
.....A composable that change it's size
}
},
)
ar...@gmail.com <ar...@gmail.com> #3
Can you give a fuller example for the animateContentSize()
problem?
ma...@gmail.com <ma...@gmail.com> #4
It does that for all the cases where the content change.
properties = DialogProperties(usePlatformDefaultWidth = false)
var show by remember { mutableStateOf(false) }
LaunchedEffect(Unit) {
delay(1000)
show = true
}
Column {
Text("X")
if (show) {
Text"Y)
}
}
Edit: This was a well known long time issue when not using usePlatformDefaultWidth = false
so we were forced to workaround with that.
Now even with it it trigger that. (Depending on the phone, it's either super slow, or laggy and jumping).
ch...@gmail.com <ch...@gmail.com> #5
I am seeing a problem with decorFitsSystemWindows = false
where it continues to invalidate the layout even after the animation completes. I don't think that's the problem you're worried about, though.
If I understand correctly, the problem you're seeing is something about it being laggy? And it didn't happen in the previous version, right?
That problem is likely due to the Window resizing on every frame, which is more expensive than the window content resizing on every frame. In a previous iteration, the window size was full screen and the content resized itself. You can resolve this yourself by doing this:
Surface(
modifier = Modifier.safeContentPadding()
.fillMaxSize()
.wrapContentHeight()
.fillMaxWidth(0.8f)
.animateContentSize(),
...
I'll see if I can fix the problem with decorFitsSystemWindows = false
invalidating layout continuously.
ka...@gmail.com <ka...@gmail.com> #7
I just verified that an AlertDialog
called from a ModalBottomSheet
from a Pixel 9XL works fine. I'll see if I can find a Samsung device to test.
jo...@gmail.com <jo...@gmail.com> #8
Yes this is specific to Samsung as stated in first message.
I repro via Samsung testlab as I do not have a device myself, but A54 A55 with Android 14 there does reproduce the issue. (And a few different other Android 14 samsung devices from my beta users)
mi...@gmail.com <mi...@gmail.com> #9
I just verified that I can repro on a Samsung device.
jm...@comcast.net <jm...@comcast.net> #10
Perfect.
Just quickly tested the
.fillMaxSize()
.wrapContentHeight()
And it seems to behave correctly for the dialog scrim so works as a solution, may worth a note somewhere as cheating with usePlatformDefaultWidth = false
was often found as solution in a few posts over Internet.
A quick "mostly" related question to the dialog scrim, many users requested an option to hide the status bar in my app to be in full immersive mode, but there's no way to do that with dialogs right now. Is this something that can be requested? I have a fork of M3 BottomSheet to handle that, but handling a fork of the low level dialog requires a full copy and rewrite of everything that depends on it.
mi...@gmail.com <mi...@gmail.com> #11
Have you tried using the DialogWindowProvider?
:
fun findDialogWindowProviderInParent(view: View): DialogWindowProvider? {
if (view is DialogWindowProvider) {
return view
}
val parent = view.parent ?: return null
if (parent is View) {
return findDialogWindowProviderInParent(parent)
}
return null
}
@Composable
MyDialogContent() {
val dialogWindowProvider = findDialogWindowProviderInParent(LocalView.current)
dialogWindowProvider?.window?.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN)
...
}
da...@gmail.com <da...@gmail.com> #12
Not at all I always failed at finding the proper window, this works perfectly thanks a lot.
val dialogWindowProvider = findDialogWindowProviderInParent(LocalView.current)
val window = dialogWindowProvider?.window
if (window != null) {
WindowCompat.getInsetsController(window, window.decorView).apply {
hide(WindowInsetsCompat.Type.statusBars())
systemBarsBehavior = WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
}
}
dy...@gmail.com <dy...@gmail.com> #13
Returning to the 2nd issue about the lag and your solution.
Using a .fillMaxSize()
breaks the second .fillMaxWidth(0.8f)
. In my case since only the height change I can use a .fillMaxHeight()
but I do not really understand what is happening. See attached screenshots.
I can just return to usePlatformDefaultWidth = true
since your workaround fixes the lag and then it behave as expected.
So just reporting in case there's something else about measurement that changes and was not expected.
ai...@gmail.com <ai...@gmail.com> #14
Ok and now the memories slowly comes back :(
usePlatformDefaultWidth = true
and dialog resizing issues.
Use the following dialog content with the content from #4 and usePlatformDefaultWidth = true
Surface(
modifier = modifier
.safeContentPadding()
.fillMaxWidth(0.8f),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
dialogNavigator.SaveableState("currentDialog") {
dialogContent(dialogNavigator)
}
}
It gives the result plaformnoanimate.png attached.
With
Surface(
modifier = modifier
.safeContentPadding()
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
dialogNavigator.SaveableState("currentDialog") {
dialogContent(dialogNavigator)
}
}
It gives the result platformanimate.png
Both are wrong as the dialog does not properly resized on content change, strangely I can't find the issue on the tracker but I'm pretty sure there was one opened about that since ages and the reasons we had to migrate to use usePlatformDefaultWidth = false
.
Those hacks are so old on my side that I have an hard time remembering all the details :(
.fillMaxSize()
breaks the dismissOnClickOutside
As per this item title, adding the fillMaxSize prevent click outside to dismiss the dialog so it not really a proper workaround.
All those tests are made with alpha 4 that contains the CL.
te...@gmail.com <te...@gmail.com> #15
Adding a final note if anyone reads and needs a solution.
Box(
modifier = Modifier
.safeDrawingPadding()
.fillMaxSize()
.padding(horizontal = 32.dp)
.clickable {
if (dialogState.canDismiss.value) {
dialogNavigator.hide()
}
}
) {
Surface(
modifier = modifier
.align(Alignment.Center)
.sizeIn(maxWidth = 640.dp)
.clickable(enabled = false) {}
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
dialogNavigator.SaveableState("currentDialog") {
dialogContent(dialogNavigator)
}
}
}
Beware that this still only works properly with usePlatformDefaultWidth = false
See resulting video "works"
With usePlatformDefaultWidth = true
this will give the result "notwork" where the dialog width animate (while it should not, the actual width never changes) but the content does not seems to react so the title is on 2 lines. (The title is a simple Text() present on first display, not a later change)
I think I covered most of the issues with dialogs here. Some very old that where workarounded via usePlatformDefaultWidth=false
and some that are now also present in usePlatformDefaultWidth=false
due to window resizing (But working better than the other case)
ga...@gmail.com <ga...@gmail.com> #16
Project: platform/frameworks/support
Branch: androidx-main
Author: George Mount <
Link:
Set default Gravity for Dialogs to CENTER
Expand for full commit details
Set default Gravity for Dialogs to CENTER
Fixes: 373093006
On some devices, the default gravity for dialogs is not CENTER.
This changes the default gravity for Compose dialogs to CENTER.
Test: new test, manual testing on broken device
Change-Id: Ia2ec9f6edc2705cb8a13201d5e05a859a6bb9571
Files:
- M
compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/window/DialogTest.kt
- M
compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/window/AndroidDialog.android.kt
Hash: 97468d483b698d637162d50a4549ac0f2d8257ca
Date: Wed Oct 16 15:34:47 2024
ma...@gmail.com <ma...@gmail.com> #17
Can we discuss the other issues too?
ma...@gmail.com <ma...@gmail.com> #18
I guess that's a no and I documented all the issues for nothing.
ra...@gmail.com <ra...@gmail.com> #19
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.ui:ui:1.8.0-alpha05
androidx.compose.ui:ui-android:1.8.0-alpha05
androidx.compose.ui:ui-jvmstubs:1.8.0-alpha05
androidx.compose.ui:ui-linuxx64stubs:1.8.0-alpha05
sh...@gmail.com <sh...@gmail.com> #20
dr...@gmail.com <dr...@gmail.com> #21
are in a standstill. Someone has to make the first move! You've got to do it sooner
or later!
al...@gmail.com <al...@gmail.com> #22
sp...@gmail.com <sp...@gmail.com> #23
ad...@gmail.com <ad...@gmail.com> #24
am...@gmail.com <am...@gmail.com> #27
Thank you so much!
[Deleted User] <[Deleted User]> #28
starred. This topic has far too many supporters and I just get more emails than I
want to receive. I still support this issue, but the only way to reduce all the
comments from other people who support it (without reducing emails from every other
starred subject) is to unstar it and thus officially unsupport it, even though I
really do actually support this.
me...@gmail.com <me...@gmail.com> #29
here's a subject line to look for
st...@gmail.com <st...@gmail.com> #30
It is incredibly frustrating to read blog posts like this one:
Reading how Unladen Swallow's optimizations and (to a lesser degree) Antoine's GIL
work will only be merged into Py3K as a carrot to encourage people to migrate is so
frustrating because my main use of python is with GAE. And we're stuck on 2.5 with
no visible indication of a 3.1 option coming anytime soon.
da...@gmail.com <da...@gmail.com> #31
the industry and Python 3k is just not ready enough. Most of the packages, framework
does not support 3k version and not going for 1-2 more years. Actually if you know 2.X
there is not much difference in 3.X (I am not talking about inner differences of
implementation). Google should and will stick with the Python 2.X branch for quite a
long time. If you would go to Python channel on efnet (I think) it's even written in
the topic that Python 3k is just not ready. The problem is with Python developers who
too often want to make changes to the syntax. Moving everything takes years.
st...@gmail.com <st...@gmail.com> #32
Nobody is requesting or suggesting moving GAE to py 3.x INSTEAD of 2.5. The
speculation is that Google would use the app.yaml runtime specification to pick which
runtime (python or python3) to use. In light of the current runtime not going away,
your comments have no bearing on the almost 1000 people here who want to use python 3.1
on App Engine.
vm...@gmail.com <vm...@gmail.com> #33
I’d also like to point out the flaw in your logic:
"Most of the packages, framework
does not support 3k version and not going for 1-2 more years.”
Oh, you mean like GAE ? You know, it takes adding the support to add the support eh.. And as Stephen pointed
out, I’m sure no one is saying 2.x support should be dropped.
[Deleted User] <[Deleted User]> #34
later (2to3), and it would be better for newbies since there are a number of Python 3 books available. The lack
of Python 3 support has been a significant deterrent in my wanting to learn App Engine these past 2 years, but
I am coming to realize that reworking datastore code for massive scale (SQL -> NoSQL) is a more significant
rewrite.
I'm hoping PEP 385 helps make supporting multiple Python runtimes more feasible, as Mercurial should make
it easier to maintain the GAE-sandboxed branches of Python. @Stephen, I think PEP 3146 for merging Unladen
Swallow is still a ways off, but hopefully that will give the App Engine team another good reason to support
Python 3.
ki...@gmail.com <ki...@gmail.com> #35
Python want to do it with 3.x rather than 2.x and GAE would be the best place for us to
start. Stephen's suggestion (app.yaml choosing wither 2.x or 3.x) is the best efficient
solution I believe.
sh...@gmail.com <sh...@gmail.com> #36
support" issue, they say there all the reasons why they don't support newer python
than 2.5 yet and that they are planning on having support for newer versions of
python, but they are focusing on other things.
I suggest for everyone to go with python 2.5 for now, learning to adjust to a newer
language is part of the learning curve for new programmers.
ja...@gmail.com <ja...@gmail.com> #37
ka...@gmail.com <ka...@gmail.com> #38
not going to waste my time with old versions. I mean its like using PHP4 when PHP5
has long since replaced it, makes no sense. I do want GAE to support python 3.x.
sy...@gmail.com <sy...@gmail.com> #39
The comments section is not for voicing petition. You already have the star for that. Mark it and wait for response for developers.
Star it.
As to why there is still no support for newer Python versions:
1. The versions greatly differ from one to another (even 2.5->2.6 is quite significant).
2. The 2.5 python version cannot be rendered obsolete until all python GAE users migrate to newer version.
3. That means, another GAE version would need to be maintained in parallel to the 2.5 python version.
4. That would require more manwork for both development and maintenance. You might think that since Google is a big enterprise, manwork is no hurdle. But that notion is a misunderstanding.
Point no. 4 is applicable to other language addition request ("please add PHP, Perl, Ruby, C#, etc."), although Google's own development vision might also be in play (preferring Python over PHP/Perl etc.).
th...@gmail.com <th...@gmail.com> #40
GAE is struggling to maintain the core product atm. Focus on datastore latency before considering feature enhancements.
ro...@gmail.com <ro...@gmail.com> #41
also, I want Python 3.x for new projects
co...@gmail.com <co...@gmail.com> #42
"2. The 2.5 python version cannot be rendered obsolete until all python GAE users migrate to newer version."
=> Why would they upgrade if
1) nothing encourages them to do so, and
2) they can't use anything other than 2.5
???
@syockit wrote
"4. That would require more manwork for both development and maintenance. You might think that since Google is a big enterprise, manwork is no hurdle. But that notion is a misunderstanding."
=> I agree: doubling the number of people on a project doesn't make it go twice as fast. Far from it.
zi...@gmail.com <zi...@gmail.com> #43
Think about that if you upgrade to python 3 you won't need to upgrade anymore until python 4 is released (lot of time I think)!
ro...@gmail.com <ro...@gmail.com> #44
ap...@gmail.com <ap...@gmail.com> #45
sy...@gmail.com <sy...@gmail.com> #46
Actually all the points I brought forward was meant to go together. If there is GAP update for python2.6 or 3, people can upgrade. But since not all people will upgrade immediately, both legacy python2.5 version and the new python version have to be maintained.
@zippoxer, @rok.gregoric, @Apostol.Wang
You didn't read all the comments, did you?
fl...@gmail.com <fl...@gmail.com> #47
pe...@gmail.com <pe...@gmail.com> #48
---I am trying to use Google App Engine on Ubuntu, but get this error:
NameError: global name 'os' is not defined
I tried to follow the advice from another Ubuntu forums thread (below)
(I could not reply to that thread for some reason)
but I don't see this path in python 2.5.2 (which is what Google App Engine recommends).
(Beginner Ubuntu question: I assume I do "gksudo..."in the terminal, but then search through the python directories to open that file. I can't find that file when I search)
(Python 2.6 has 2 files with similar names but that version is not recommended by Google App Engine)
----advice from another thread:
, do the following:
1. gksudo gedit usr/lib/python2.5/site-packages/UpdateManager/DistUpgradeFetcher.py
2. Enter password.
3. Below the # symbols, but above everything else, add the following:
import os
import dbus
4. Close out of gEdit.
5. Try upgrading the distro again: gksu "update-manager -c" (you need the quote marks - usually, quote marks aren't added, but you need them here).
You don't have to know what the # symbols are used for (if you're curious, they are comment symbols in the programming world).
sc...@gmail.com <sc...@gmail.com> #49
pa...@gmail.com <pa...@gmail.com> #50
and given that wsgi and python 3 do not work well together...
we...@gmail.com <we...@gmail.com> #51
;)
ba...@gmail.com <ba...@gmail.com> #52
[Deleted User] <[Deleted User]> #53
I hope this happens someday.
bo...@gtempaccount.com <bo...@gtempaccount.com> #54
2.5 is no longer easily available for windows, and when 2.7 comes out, it will likely become unsupported (policy at
Assuming that Google doesn't just end-of-life GAE, eventually there'll need to be a 3.x GAE. Given that there are already 2.x GAE apps, there'll need to be simultaneous support for 2.x and 3.x.
Yes, it makes sense to delay the start of developing 3.x as long as possible, just to avoid the merges (I'm hoping they're using something change-oriented like mercurial so they're not a *total* nightmare - but it's still a time-sink).
Personally, I'm hoping a 3.x version at least gets announced as "in development", or, better yet, as a pre-alpha even with lots of missing functionality. That'd send the message that Google's not about to EoL GAE to developers like me who are honestly getting a bit doubtful.
@ patelgopal: I'm mostly interested in better unicode handling and the changes in exception handling.
te...@gmail.com <te...@gmail.com> #55
Read Nick Johnson's very excellent post on just this at:
sy...@gmail.com <sy...@gmail.com> #56
wq...@gmail.com <wq...@gmail.com> #57
ri...@gmail.com <ri...@gmail.com> #58
ja...@gmail.com <ja...@gmail.com> #59
fe...@gmail.com <fe...@gmail.com> #60
gu...@gmail.com <gu...@gmail.com> #61
[Deleted User] <[Deleted User]> #62
mi...@gmail.com <mi...@gmail.com> #63
du...@gmail.com <du...@gmail.com> #64
co...@gmail.com <co...@gmail.com> #65
3.2 is out, must wait for 4?
mo...@gmail.com <mo...@gmail.com> #66
I'm sure we'll get Python 3 support before Python 5 is released....
no worries...
ja...@gmail.com <ja...@gmail.com> #67
ma...@gmail.com <ma...@gmail.com> #68
The main reason is that GAE only support Python 2.5.2.
But some of the modules aren't no longer support 2.5.
They remove the old binary release from the website.
They only offer >=2.6.
And, as you know, it's really hard to compile the source on Windows.....
So please add Python 3 support, or update to Python 2.7!!!
sh...@gmail.com <sh...@gmail.com> #69
ad...@gmail.com <ad...@gmail.com> #70
xi...@google.com <xi...@google.com> #71
se...@gtempaccount.com <se...@gtempaccount.com> #72
2.x must die
yc...@gmail.com <yc...@gmail.com> #73
ko...@gmail.com <ko...@gmail.com> #74
Btw I would also like Python 3 support.
Cheers
vi...@gmail.com <vi...@gmail.com> #75
em...@gmail.com <em...@gmail.com> #76
lu...@gmail.com <lu...@gmail.com> #77
br...@gmail.com <br...@gmail.com> #78
ol...@gmail.com <ol...@gmail.com> #79
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
~550 python developers are subscribed for this issue and all of them will get yet another useless e-mail every time when somebody comments on this issue.
So please DO NOT COMMENT IF YOU HAVE NOTHING TO SAY!
Please don't post stuff like (unless you are developer at Google):
+1
Me too
Python 3 FTW!
2.x must die
I prefer to use python 3,too.
Because that's just annoying to get all this useless annoying whining every time when yet another one Python developer discovers that there's no Python 3 support yet in Google App Engine.
Developers at Google are working on this (just look at Google App Engine roadmap). I guess they will implement Python 3 support when all required dependencies will be ported (or will support Python 3).
IF YOU WANT PYTHON 3 SUPPORT THAT MUCH THEN DO SOMETHING:
- help porting DJANGO to Python 3 (I guess it's a lot of work)
- help porting WEBOB to Python 3
- help porting any other App Engine dependencies to Python 3
- just do not post useless comments and wait.
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
!!!!! READ BEFORE POSTING NEW COMMENT !!!!!
[Deleted User] <[Deleted User]> #80
[Deleted User] <[Deleted User]> #81
du...@gmail.com <du...@gmail.com> #82
al...@gmail.com <al...@gmail.com> #83
re...@gmail.com <re...@gmail.com> #85
v....@gmail.com <v....@gmail.com> #86
up...@gmail.com <up...@gmail.com> #87
mk...@gmail.com <mk...@gmail.com> #88
an...@gmail.com <an...@gmail.com> #89
vp...@gmail.com <vp...@gmail.com> #90
ra...@gmail.com <ra...@gmail.com> #91
as...@gmail.com <as...@gmail.com> #92
my...@gmail.com <my...@gmail.com> #93
br...@gmail.com <br...@gmail.com> #94
fe...@gmail.com <fe...@gmail.com> #95
Me too!
yt...@gmail.com <yt...@gmail.com> #96
Ok, just stop posting.
If you have time to post useless annoying,
why don't you help porting or vote with your feet?
ka...@gmail.com <ka...@gmail.com> #97
ss...@gmail.com <ss...@gmail.com> #98
ru...@gmail.com <ru...@gmail.com> #99
vi...@gmail.com <vi...@gmail.com> #100
br...@gmail.com <br...@gmail.com> #101
me...@rotstein.co.il <me...@rotstein.co.il> #102
pr...@google.com <pr...@google.com> #103
st...@google.com <st...@google.com> #104
If you're interested in being an alpha tester for this new runtime, please complete this sign-up form:
st...@google.com <st...@google.com> #106
It took a long time to get us here and we've got a lot more work to do. I'm excited to see what you can build with this new runtime. Marking this bug as "Fixed"! :)
Description