android ViewPager xml inflate error(android ViewPager xml膨胀错误)
问题描述
我正在学习如何实现水平滑动,但在尝试启动布局中包含 ViewPager
的应用时遇到以下错误.
I'm learning how to implement horizontal swiping and I'm getting the following error while trying to launch my app having ViewPager
in its layout.
03-25 17:12:13.166: E/AndroidRuntime(19449): FATAL EXCEPTION: main
03-25 17:12:13.166: E/AndroidRuntime(19449): java.lang.RuntimeException: Unable to start activity ComponentInfo{androidapps.viewpagerdemo/androidapps.viewpagerdemo.MainActivity}: android.view.InflateException: Binary XML file line #11: Error inflating class android.support.v4.app.ViewPager
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread.access$600(ActivityThread.java:130)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.os.Handler.dispatchMessage(Handler.java:99)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.os.Looper.loop(Looper.java:137)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread.main(ActivityThread.java:4745)
03-25 17:12:13.166: E/AndroidRuntime(19449): at java.lang.reflect.Method.invokeNative(Native Method)
03-25 17:12:13.166: E/AndroidRuntime(19449): at java.lang.reflect.Method.invoke(Method.java:511)
03-25 17:12:13.166: E/AndroidRuntime(19449): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
03-25 17:12:13.166: E/AndroidRuntime(19449): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
03-25 17:12:13.166: E/AndroidRuntime(19449): at dalvik.system.NativeStart.main(Native Method)
03-25 17:12:13.166: E/AndroidRuntime(19449): Caused by: android.view.InflateException: Binary XML file line #11: Error inflating class android.support.v4.app.ViewPager
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:698)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
03-25 17:12:13.166: E/AndroidRuntime(19449): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:256)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.Activity.setContentView(Activity.java:1867)
03-25 17:12:13.166: E/AndroidRuntime(19449): at androidapps.viewpagerdemo.MainActivity.onCreate(MainActivity.java:14)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.Activity.performCreate(Activity.java:5008)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
03-25 17:12:13.166: E/AndroidRuntime(19449): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
03-25 17:12:13.166: E/AndroidRuntime(19449): ... 11 more
我尝试了此链接中的解决方案,但它对我不起作用.错误膨胀类android.support.v4.view.ViewPager
I tried out the solution in this link but it didn't work for me. Error inflating class android.support.v4.view.ViewPager
activity_main.xml
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<android.support.v4.app.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>
片段的布局文件只包含一个TextView
.片段类如下:
The layout file of the fragment consists of simply one TextView
. The fragment class is as follows:
public class MyFragment extends Fragment{
int mCurrentPage;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Getting the arguments to the Bundle object */
Bundle data = getArguments();
/** Getting integer data of the key current_page from the bundle */
mCurrentPage = data.getInt("current_page", 0);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.frag_layout, container,false);
TextView tv = (TextView ) v.findViewById(R.id.tv);
tv.setText("You are viewing the page #" + mCurrentPage + "
" + "Swipe Horizontally left / right");
return v;
}
}
FragmentPagerAdapter 类:
The FragmentPagerAdapter class:
public class MyAdapter extends FragmentPagerAdapter{
final int PAGE_COUNT = 3;
public MyAdapter(FragmentManager fm) {
super(fm);
// TODO Auto-generated constructor stub
}
@Override
public Fragment getItem(int arg0) {
// TODO Auto-generated method stub
MyFragment myFragment = new MyFragment();
Bundle data = new Bundle();
data.putInt("current_page", arg0+1);
myFragment.setArguments(data);
return myFragment;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return PAGE_COUNT;
}
}
主要活动:
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ViewPager pager = (ViewPager) findViewById(R.id.pager);
/** Instantiating FragmentPagerAdapter */
MyAdapter pagerAdapter = new MyAdapter(getSupportFragmentManager());
/** Setting the pagerAdapter to the pager object */
pager.setAdapter(pagerAdapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
推荐答案
您好,我刚刚对您的布局文件进行了一些更改 &它现在工作正常..
Hi i have just made some change in your layout file & its working fine now..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
你可以检查一下:
以下代码仅供参考---->
below code is just for your refrance---->
你的主要活动:
package com.example.viewpage;
import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.ViewPager;
import android.view.Menu;
public class MainActivity extends FragmentActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ViewPager pager = (ViewPager) findViewById(R.id.pager);
/** Instantiating FragmentPagerAdapter */
MyAdapter pagerAdapter = new MyAdapter(getSupportFragmentManager());
/** Setting the pagerAdapter to the pager object */
pager.setAdapter(pagerAdapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
我的适配器:
package com.example.viewpage;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
public class MyAdapter extends android.support.v4.app.FragmentPagerAdapter {
final int PAGE_COUNT = 3;
public MyAdapter(FragmentManager fm) {
super(fm);
// TODO Auto-generated constructor stub
}
@Override
public Fragment getItem(int arg0) {
// TODO Auto-generated method stub
MyFragment myFragment = new MyFragment();
Bundle data = new Bundle();
data.putInt("current_page", arg0 + 1);
myFragment.setArguments(data);
return myFragment;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return PAGE_COUNT;
}
}
我的片段:
package com.example.viewpage;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class MyFragment extends Fragment {
private int mCurrentPage;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Getting the arguments to the Bundle object */
Bundle data = getArguments();
/** Getting integer data of the key current_page from the bundle */
mCurrentPage = data.getInt("current_page", 0);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.frag_layout, container, false);
TextView tv = (TextView) v.findViewById(R.id.textView1);
tv.setText("You are viewing the page #" + mCurrentPage + "
"
+ "Swipe Horizontally left / right");
return v;
}
}
frag_layout.xml
frag_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
注意: 在 lib 文件夹中添加支持 android-support-v4.jar
.在 Build Path
中添加这个 jar.现在转到项目属性-->构建路径-->订单&出口-->全选 -->好的
.清洁&运行.
NOTE: add support android-support-v4.jar
in lib folder. add this jar in Build Path
. now go to project property-->Build Path--> Order & Export--> select all --> ok
. Clean & RUN.
这篇关于android ViewPager xml膨胀错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:android ViewPager xml膨胀错误


基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01