I want to add GridLayout into my android project which is use support library GridLayout v7. I found this thread but maybe a few steps of adding this library did not mention in this paragraph Set up support GridLayout library in IntelliJ.
can anyone explain obviously?
Edit: I have the same problem at this thread
It's late for an answer but here it is, at least for future people looking for a solution on how to add the support library and resources for GridLayout
(or ActionBarActivity
/ AppCompat
, see below).
The easiest way is as follows.
Make sure you have installed the Android Support Library, from the Android SDK Manager.
In IDEA: Open your project, then select File
/ Import Module
{SDK}\extras\android\support\v7\gridlayout
Import module from external model
and Eclipse
Create module files near .classpath files
, or choose to put them elsewhere if you can't / don't want to write into your SDK pathSelect Eclipse projects to import
and android-support-v7-gridlayout
, IDEA will also ask you to reload the project.gridlayout [android-support-v7-gridlayout]
in your project. Now you have to update your project dependencies to this module for the resources, and add the .jar libraries. Select File
/ Project Structure
Modules
project settings, and select your project (in the picture below, testv7)Dependencies
on the right panel+
button (on the right panel) a Module dependency...
to the android-support-v7-gridlayout
Jars or directories...
pointing to the {SDK}\extras\android\support\v7\gridlayout\libs
directory (or to the .jar within). If you intend to use the v4 as well, choose {SDK}\extras\android\support\v7\appcompat\libs
instead since it contains both v4 and v7 jarsAnd now you should be fine.
For me it was the only way out of the similar problem with the ActionBarActivity
, which is solved using the same technique on the {SDK}\extras\android\support\v7\appcompat
module. And I did try a few other ways ;)