Bapho
Bapho
Great! Will png's be saved as png's? this possibly could save some disk size.
Try to change your code: ``` @Override public void onItemClick( AdapterView parent, View view, int position, long id ) { int realPos = position - gridView.getHeaderViewsCount(); ```
My views have the same height but i have the same issue. Unfortunately, in my case, the workaround is ordering it from right to left. The left-most view of the...
@booker0108 I used different dimensions before. Plus headers, footers and variable column counts for landscape and portrait mode.
I wanted a left-to-right order but your code isnt working if using headers. So i used this code: ``` private int getChildColumn( final int position, final boolean flowDown ) {...
Why don't you use android.widget.AdapterView.OnItemClickListener? It works for me.
a solution is to extend AppCompatRadioButton: ``` public class RadioButton extends AppCompatRadioButton { private RadioButtonDrawable drawable; public RadioButton( Context context ) { super(context); init(context, null, 0, R.style.Material_Drawable_RadioButton); } public RadioButton(...