Fixed
Status Update
Comments
il...@google.com <il...@google.com>
mi...@gmail.com <mi...@gmail.com> #2
Client WireGuard and OpenVPN have the same behavior.
au...@gmail.com <au...@gmail.com> #3
Same issue with surfshark. Have tried all protocols says connected but out going data.
be...@gmail.com <be...@gmail.com> #4
I am using Norton 360 VPN, I was also suffering from this issue (the Key icon indicates I am connected to VPN but I cannot connect to websites etc.). My solution was to disable "Block connections without VPN" and it started working again. Unfortunately re-enabling it will cause the issue to come back.
md...@gmail.com <md...@gmail.com> #5
same issue with ExpressVPN and v2rayNG
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #6
We were able to reproduce the issue on the public Android Developer Preview build. However, the issue is not reproducible on our internal development build (which is ahead of the public release). Please test it on the next public release and let us know if you are still having issues.
ap...@google.com <ap...@google.com> #7
Same issue on FortiClient VPN on my Pixel 3 XL with build SPB4.210715.011, waiting for the public fix.
il...@google.com <il...@google.com> #8
Same issue on Clash for Android on Pixel 4 XL SPB4.210715.011
an...@gmail.com <an...@gmail.com> #9
same issue with Outline.
il...@google.com <il...@google.com> #10
same issue on Pixel 5
an...@gmail.com <an...@gmail.com> #11
I'm using napsternetv facing this issue too
il...@google.com <il...@google.com> #12
相同问题也发生在我的pixel3xl上
an...@gmail.com <an...@gmail.com> #13
Same issue with beta 4
se...@google.com <se...@google.com> #14
same issue with v2rayNG on Pixel 5
jo...@gmail.com <jo...@gmail.com> #15
same issue with expressVPN and windscribe
il...@google.com <il...@google.com> #16
i’m on the pixel 4
st...@gmail.com <st...@gmail.com> #17
Same with my Pixel 3, so I can't use all google app...
il...@google.com <il...@google.com> #18
This is a serious setback, when can we expect the next public release to come out?
Description
The navigation components use the value in `android:label` to set the [toolbar] title depending on where in the navigation graph the use has navigated to. This works fine except I want to have the title reflect the category of things the screen is referring to, but the specific thing that the user is about to edit.
Normally I would have piece of code like `updateTitle` below on the activity and then call it from the fragment (onResume) with:
``` kotlin
updateTitle(getString(R.string.book_title, bookNumber))
```
but this does not work unless I also remove the `android:label` attribute from the nav_graph.xml.
Component used:
'android.arch.navigation:navigation-fragment-ktx:1.0.0-alpha01'
'android.arch.navigation:navigation-ui-ktx:1.0.0-alpha01'
Version used:
as above
Devices/Android versions reproduced on:
All
- Sample project to trigger the issue.
``` xml
// snippet from nav_graph.xml
<fragment
android:id="@+id/bookFragment"
android:name="com.example.bookFragment"
android:label="@string/book_title" >
<argument
android:name="bookId"
app:type="integer" />
</fragment>
// snippet from sttrings.xml
<string name="book_title">book %1$d</string>
```
Some snippets from the way I would otherwise do it.
``` kotlin
// actrivity, implements updateTitle( from an interface (Foo)
override fun updateTitle(title: String) {
toolbar?.title = title
}
// fragment
override fun onResume() {
super.onResume()
// foo is the activity cast to Foo
foo?.updateTitle(getString(R.string.reading_title, 1))
}
```
- A screenrecord or screenshots showing the issue (if UI related).
Actual title vs expected