这是我的xml代码:
<android.support.v4.view.ViewPager
android:id="@+id/guide_pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
.................
这是我的android java代码。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.guide);
// here will be crash
mPager = (ViewPager) findViewById(R.id.guide_pager);
}
在代码中,很可能会抛出一个execption:android.support.v4.view.ViewPager无法强制转换为android.support.v4.view.ViewPager。但在我的项目中只有一个support.v4.jar。谁可以帮助我?
答案 0 :(得分:0)
这样做......
1) Remove the `android-support-v4.jar` from your project
2) clean the project
3) copy the jar file from `yourdrive:\android-sdks\extras\android\support\v4`
4) add this library to your project