如何包含 ViewPagerIndicator
how to in including ViewPagerIndicator
我正在尝试在我的项目中包含 ViewPagerIndicator。如果我创建一个新项目,可以包含这个库,但我不能将它包含在我导入的项目中。这是我在 eclipse 中遇到的问题的截图。
problem picture
这是我的清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.swipetabs"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".FragmentA"
android:label="@string/title_activity_fragment" >
</activity>
</application>
我认为你的项目和你的库在不同的路径中。确保两者都在同一个文件夹中,然后再试一次。它会起作用
我正在尝试在我的项目中包含 ViewPagerIndicator。如果我创建一个新项目,可以包含这个库,但我不能将它包含在我导入的项目中。这是我在 eclipse 中遇到的问题的截图。 problem picture
这是我的清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.swipetabs"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".FragmentA"
android:label="@string/title_activity_fragment" >
</activity>
</application>
我认为你的项目和你的库在不同的路径中。确保两者都在同一个文件夹中,然后再试一次。它会起作用