Obsolete
Status Update
Comments
jr...@google.com <jr...@google.com> #2
I see same issue and have been debugging it.
NOTE: It DOES NOT happen if not using support package, but use android level 14/15 library. I believe Honeycomb works well too.
My current workaround is to provide my own DialogFragment.show() method, like below:
public int show(FragmentTransaction transaction, String tag) {
return show(transaction, tag, false);
}
public int show(FragmentTransaction transaction, String tag, boolean allowStateLoss) {
transaction.add(this, tag);
mRemoved = false;
mBackStackId = allowStateLoss ? transaction.commitAllowingStateLoss() : transaction.commit();
return mBackStackId;
}
NOTE: It DOES NOT happen if not using support package, but use android level 14/15 library. I believe Honeycomb works well too.
My current workaround is to provide my own DialogFragment.show() method, like below:
public int show(FragmentTransaction transaction, String tag) {
return show(transaction, tag, false);
}
public int show(FragmentTransaction transaction, String tag, boolean allowStateLoss) {
transaction.add(this, tag);
mRemoved = false;
mBackStackId = allowStateLoss ? transaction.commitAllowingStateLoss() : transaction.commit();
return mBackStackId;
}
Description
Does this feature request already exist in the tracker?
Identify the developer feature that is most relevant to your feature request:
Briefly describe the feature request. If end users will interact with this feature, describe the interaction and expected outcome.
I routinely manage multiple analytics accounts each with several sub-accounts and properties under each one.
I will often get added to new accounts after those accounts have been set up and get asked if site analytics accounts can be set up or upgraded.
However, many of those accounts are not set up using best naming practices and finding an analytics account can often be problematic as there is no way currently to search for an account based on the GA4 Stream ID or Measurement ID. The only way to see either of those is to manually go to the admin page and open the Stream "window" one by one.
This is especially true of accounts that only have GA4 set up and want to migrate to using Tag Manager, or when using Tag Manager and trying to see what GA4 account an ID belongs to.
(Optional) How does this feature request affect Google Analytics users that use your application.
Adding this search feature would help streamline user assistance requests and make things easier and faster to discover and edit for all users.
(Optional) What alternatives are you/your users using right now instead of the requested feature.
Currently, any user who wants to see the IDs on their account must be an admin, basic users have no way to do any stream discovery or searches. Therefore, the account admins are required to go one by one through accounts any time a user submits a request for assistance.