ashishsharma30

Results 6 comments of ashishsharma30

@krishnapatel086 try this 1st Step : implements AdapterView.OnItemClickListener 2nd Step : listView.setOnItemClickListener(this); 3rd Step : @Override public void onItemClick(@NonNull AdapterView parent, @NonNull View view, int position, long id) { Toast.makeText(this,...

@krishnapatel086 in ViewHolder try to in bind method. public void bind(final ContentItem item, final OnItemClickListener listener) { itemView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { listener.onItemClick(item); } }); }

Insert in to build.gradle(Module:App) these lines: sourceSets.main { jniLibs.srcDir 'libs' jni.srcDirs = [] //disable automatic ndk-build call } sync now it'll auto create jni libs. All the best.

Sorry but i don't know what is mean "PR"??? On 2 May 2017 12:05 p.m., "Madhur Ahuja" wrote: > Can you send me a PR for this? > > —...

Ok, thanks.. But again I'm so sorry I'm new how to ues githubs function i don't know how to create PR... I'm using ubantu os can you suggest me whatcan...

Insert in to build.gradle(Module:App) these lines: sourceSets.main { jniLibs.srcDir 'libs' jni.srcDirs = [] //disable automatic ndk-build call } sync now it'll auto create jni libs. All the best.