Viewpager内容未使用ScrollView显示在片段中,但显示了滚动条

时间:2019-04-09 05:43:38

标签: android android-fragments scroll android-viewpager

我的问题不同。使用下面的xml布局,我可以流畅地显示viewpager页面。滚动视图中没有问题,并且还显示了内容。但是,当我在导航抽屉中的片段中使用相同的代码时,namespace会显示,但内容不会显示。显示空白页。

我使用了scroll bar。但没有结果。下面是图片。我也为android:fillViewport="true"使用了固定高度。但没有结果。

enter image description here

这是主要布局

scrollview

这是子级布局

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

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v4.view.PagerTitleStrip
            android:id="@+id/pager_title_strip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="#33b5e5"
            android:textColor="#fff"
            android:paddingTop="4dp"
            android:paddingBottom="4dp" />

    </android.support.v4.view.ViewPager>
</LinearLayout>

这是主要的Java

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:clickable="true"
    android:focusable="true"
    android:scrollbars="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/text1"
            android:textSize="20sp"/>
    </LinearLayout>
</ScrollView>

这是MyPagerAdapter类

public class SwipeNav extends Fragment {
    private MyPagerAdapter myPagerAdapter;
    private ViewPager viewPager;
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.nav_swipe, container, false);
            myPagerAdapter = new MyPagerAdapter(getChildFragmentManager(),getContext());
            viewPager = (ViewPager) rootView.findViewById(R.id.pager);
            viewPager.setAdapter(myPagerAdapter);
            return rootView;
        }
    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
    }
}

1 个答案:

答案 0 :(得分:0)

我的问题解决了。清单中的android:hardwareAccelerated为'true'。我改为“假”

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        <application android:hardwareAccelerated="false"/>
 </manifest>

无论如何,感谢大家帮助我解决了这个问题。