CopyPastor

Detecting plagiarism made easy.

Score: 0.7976282247102977; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2016-07-26
by Akshay Bhat 'AB'

Original Post

Original - Posted on 2015-10-26
by Chan Chun Him



            
Present in both answers; Present only in the new answer; Present only in the old answer;

If you are using custom adapter, then try setting padding in `getView()` :
@Override public View getView(int position, View convertView, ViewGroup parent) { View view = super.getView(position, convertView, parent); view.setPadding(0, view.getPaddingTop(), view.getPaddingRight(), view.getPaddingBottom()); return view; }
In your SpinnerAdapter:
@Override public View getView(int position, View convertView, ViewGroup parent) { View view = super.getView(position, convertView, parent); view.setPadding(0, view.getPaddingTop(), view.getPaddingRight(), view.getPaddingBottom()); return view; }

        
Present in both answers; Present only in the new answer; Present only in the old answer;