Infeasible
Status Update
Comments
ar...@google.com <ar...@google.com> #2
This issue does not reproduce with dev preview 4.
th...@cistechsolutions.com <th...@cistechsolutions.com> #3
Closing this issue as per comment #2 from reporter.
ar...@google.com <ar...@google.com> #4
We were not able reproduce the issue with the code snippet given in comment #3 .
Please provide a sample project or apk as requested in comment #2 to investigate further.
Please provide a sample project or apk as requested in
ar...@google.com <ar...@google.com> #5
We are closing this issue as we don't have enough actionable information. If you are still facing this problem, please open new issue and add the relevant information along with reference to earlier issue.
Description
The PreferenceActivity does not display the title argument passed to PreferenceActivity.startPreferencePanel(). Instead it shows the title of the calling PreferenceActivity.
Sample code (called from a fragment):
Bundle args = new Bundle();
args.putInt(...);
args.putString(...);
PreferenceActivity preferenceActivity = (PreferenceActivity) getActivity();
preferenceActivity.startPreferencePanel(TestPreferenceFragment.class.getName(),
args,
R.string.test_pref_title,
null,
this,
0);