Iman Marashi

Results 16 comments of Iman Marashi

I have found the solution. i use this code: `protected void onProgressUpdate(Integer... progress) { // setting progress percentage super.onProgressUpdate(progress); Log.e("onProgressUpdate: ", ""+(progress[0])); newprogress = ((progress[0])) + newprogress; if (mSweetDialog.getProgressHelper().getProgress()

How to remove From Cache for all images?

I found error in this code: `public Dao getDaoByClass(Class clazz) { try { if (isInMap(clazz)) { return getFromMap(clazz); } else { return addToMap(clazz, getDao(clazz)); } } catch (java.sql.SQLException e) {...

@tatanka987 thank you . But the problem is still there

@RomanPronin I use this code to signUp in background: ` public void signUpFromMainActivity() { final QBUser user = new QBUser(App.MY_UNIQUE_ID, App.MY_UNIQUE_ID); user.setWebsite(App.MY_UNIQUE_ID); if (App.MY_EMAIL != null) if (!App.MY_EMAIL.equals("")) user.setEmail(App.MY_EMAIL); user.setFullName(App.MY_NICK_NAME);...

I need to signup by user/password . how to do it ?

@RomanPronin .I have already registered users in elsewhere. With this method: `public void signUp() { progressDialog.show(); final QBUser user = new QBUser(App.MY_UNIQUE_ID, App.MY_UNIQUE_ID);//Like 5752f5c215c8f5.60807023 user.setWebsite(App.MY_UNIQUE_ID); if (App.MY_EMAIL != null) if...

@tatanka987 I read documentation. but i can not find any textView to change font and can not find any list item to setOnLongClickListener QuickBlox SDK version is 3.3.5. I use...