AziziMusa

Results 22 comments of AziziMusa

yes @lou78 is right. It solve my case. // inside OnBindViewHolder() method, at the very bottom. put this code ItemManger.bindView(holder.itemView, position); // and then add swipelistener to current swipelayout holder.swipeLayout.addSwipeListener(new...

You are doing it wrongly. Please refer the basic query. It should be like this: `String s = "start of month"; String d = "end of month";` Example 1 //...

if you want sum function. You can do like this: `SQLiteDatabase mydatabase = openOrCreateDatabase("dbname.db",MODE_PRIVATE,null);` `Cursor cursor = mydatabase.rawQuery(“select sum(column1) as column1 from myTable”, null);` `cursor.moveToLast();` `Log.i(TAG, “sum of column1 is...

@martino2k6 solution work for me.

Solution by @joshuatam is working. To get a context at this line `Configuration.Builder builder = new Configuration.Builder(context);` inside `DatabaseContentProvider`. Can just use `getContext()`

Solved. Problem occured when ``` mRecyclerView.addOnItemTouchListener ``` is declared multiple times. So instead being inside the method, I move it into onCreateView instead

if you trying to print response in onFailure it might have issue. Check for null 1st and if null..just print throwable.toString()

i cant find any mesh network project as good as Underdark. I use it on my android project and i liked it. I just have problem with the iOS project....

in xml use `android:background` . It is working on my case, both tab background and indicator color are present.

thanks @abhimanyu209 it works !