我为我的项目创建了 36 个 OAuth 客户端 ID。但是现在当我创建新的 OAuth 客户端 ID 时,它给了我一个错误说
此项目已达到 OAuth 客户端的最大数量。要创建另一个,首先删除一个现有的。
而我有另一个项目,我在其中创建了 100 个客户 ID。
根据项目,OAuth 客户端 ID 是否有任何限制,或者我的项目可能存在任何其他问题?
我有一个 Activity带DrawerLayout.我的充气Fragment在FrameLayout此的ActivityXML文件.Xml文件包含GridView里面的内容LinearLayout.我在片段方法中应用setOnItemClickListener了这个.但是在这个方法上我称之为我的班级.因此,当我 从我这称呼这个时,我没有得到.如果可能的话,请给我一些建议如何做或任何替代方案.GridViewonActivityCreatedAsyncTaskActivityContextAsyncTasksetOnItemClickListener
我的活动
class GetExamList extends AsyncTask<String, String, String>{
Context context;
public GetExamList(Context mContext){
context=mContext;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(context);
pDialog.setMessage("Fetching Test List");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}
@Override
protected String doInBackground(String... params) {
exam_id=1;
List<NameValuePair> list = new ArrayList<NameValuePair>();
list.add(new BasicNameValuePair("exam_id", exam_id+""));
JSONObject json = jsonParser.makeHttpRequest(url_exam_list,
"POST", list);
// check for …Run Code Online (Sandbox Code Playgroud) android android-gridview android-asynctask android-fragments