0

I am beginner in android development. I am trying a scroll tab by using eclipse with the help of a tutorial video tutorial .I used page viewer and fragmentActivity and I am getting an error that

android.support.v4.view.pageTitleStrip

the above class could not be found.

Pradeep.K.K
  • 200
  • 1
  • 11
prabhakaran
  • 668
  • 2
  • 10
  • 33
  • 1
    you need to add `support-v4 lib` in your project. – M D Mar 26 '14 at 06:28
  • hw to add.. i gave fix build path then android build path dialog box opened then i click android private library and update but its not updating.. help me – prabhakaran Mar 26 '14 at 06:32
  • go to this [https://developer.android.com/tools/support-library/setup.html](https://developer.android.com/tools/support-library/setup.html) – M D Mar 26 '14 at 06:35

1 Answers1

2

To add a Support Library without resources to your application project:

  1. Make sure you have downloaded the Android Support Library using the SDK Manager.

  2. Create a libs/ directory in the root of your application project.

  3. Copy the JAR file from your Android SDK installation directory (e.g., <sdk>/extras/android/support/v4/android-support-v4.jar) into your application's project libs/ directory.

  4. Right click the JAR file and select Build Path > Add to Build Path.

Go to this for more information https://developer.android.com/tools/support-library/setup.html

M D
  • 47,665
  • 9
  • 93
  • 114