应用程序崩溃:viewpager

时间:2015-09-02 15:10:31

标签: android android-viewpager

有人可以告诉我为什么我的应用程序崩溃,如果我在同一个xml文件中放入一个viewpager的东西。谢谢。

   <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <com.example.g514110.com.SlidingTabLayout
        android:id="@+id/sliding_tabs"
        android:background="#ddd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="1"
        android:background="@android:color/white"/>

</LinearLayout>here

2 个答案:

答案 0 :(得分:0)

android:weightSum添加到你的linaer布局otr给你的viewpager高度,它在那里丢失

答案 1 :(得分:0)

问题解决了!!我得到了&#34; com.example.g514110.com.SlidingTabLayout&#34;在xml文件中实际上它不是&#34; com.example.g514110.com.SlidingTabLayout&#34;,它&#34; com.example.g514110.ihmslidingtabs.SlidingTabLayout&#34;谢谢!