我无法在Android上更改App Requests对话框的标题。有可能吗?
这是我的代码:
Bundle b = new Bundle();
b.putString("data", "some data");
b.putString("title", "some title");
b.putString("frictionless", "1");
b.putString("app_id", app_id);
WebDialog requestsDialog = (
new WebDialog.RequestsDialogBuilder(m_parent,
Session.getActiveSession(),
b))
.build();
requestsDialog.show();
为什么没有工作?