我正在使用ViewPager和TabHost来更改带有标签触摸/滑动效果的片段。但问题是,我在滑动手势时在片段过渡之间出现了 Jerk。可能是什么问题呢?
我使用了在Support4Demos项目中使用的FragmentTabsPager类。
问问题
1001 次
1 回答
0
此问题已解决。FragmentActivity的.xml文件中存在问题。请参阅下面的布局代码并注意LinearLayout声明中的注释。
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" <!-- Replacing layout_height="match_parent" resolved my issue-->
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
</TabHost>
于 2013-01-31T10:31:20.717 回答