2014.06.04 ——— android ViewPager和GridView冲突
程序员文章站
2022-07-11 22:01:40
...
2014.06.04 ——— android ViewPager和GridView冲突
参考:http://*.com/questions/15470755/textview-inside-viewpager-intercepts-touch-events
我的ViewPager里面包含了三个字fragment,其中一个是view是gridview,里面展示了一些文本,item的view如下:
<
这个时候,ViewPager左右滑动总是很不灵敏,解决方法:
参考:http://*.com/questions/15470755/textview-inside-viewpager-intercepts-touch-events
我的ViewPager里面包含了三个字fragment,其中一个是view是gridview,里面展示了一些文本,item的view如下:
<
?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:descendantFocusability="blocksDescendants" android:gravity="center" > <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:singleLine="true" android:gravity="center" android:textSize="16sp" android:textStyle="bold" android:textColor="#000000" /> </RelativeLayout>
这个时候,ViewPager左右滑动总是很不灵敏,解决方法:
android:singleLine="true" 修改为 android:maxLines="1"
推荐阅读
-
Android 中SwipeRefreshLayout与ViewPager滑动事件冲突解决方法
-
Android解决ScrollView下嵌套ListView和GridView中内容显示不全的问题
-
解决Android 沉浸式状态栏和华为虚拟按键冲突问题
-
浅谈Viewpager和轮播图的冲突解决方法
-
Android之ScrollView嵌套ListView和GridView冲突的解决方法
-
详解Android ViewPager2中的缓存和复用机制
-
2014.06.04 ——— android ViewPager和GridView冲突
-
2014.04.22 ——— android listview header和左右滑动冲突
-
2014.04.22 ——— android listview header和左右滑动冲突
-
2014.03.07 ——— android GridView 记录和恢复位置