Skip to content

Instantly share code, notes, and snippets.

@CreatorB
Created March 22, 2015 14:24
Show Gist options
  • Save CreatorB/696a50033c90770893dc to your computer and use it in GitHub Desktop.
Save CreatorB/696a50033c90770893dc to your computer and use it in GitHub Desktop.
GridView can't be cast - Android
/*Type conflict.
Your Activity can't have name GridView, because it conflicts with android.widget.GridView. Compiler thinks that you want to cast to GridView extending Activity, not the widget class.
Solutions:
rename you GridView
use fully qualified type here: */
android.widget.GridView gridview = (android.widget.GridView) findViewById(R.id.gridview);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment