How to download and import android v7-appcompat bookstore to Netbeans?

Asked

Viewed 181 times

3

I’d like to know how to import to a project using Netbeans, the v7-appcompat android library. I’m using a study code and Net Beans isn’t recognizing some lines of code.

public class MainActivity extends Activity implements AppCompatCallback { 
                                        /// Não Reconhece AppCompatCallback
private AppCompatDelegate delegate;
         /// Não Reconhece AppCompatDelegate
 }  

1 answer

3


As for download, on the Android website for developers there is a guide explaining in detail how to download.

After downloading, to make use of it, expand the project tree in the Netbeans IDE and:

  • Right-click the directory "Libraries";
  • Choose "Add JAR/Folder";
  • Search for the directory where the file is. jar and select it.

Once this is done it will be possible to use the . jar classes in your project.

importar

Browser other questions tagged

You are not signed in. Login or sign up in order to post.