设置滚动视图时遇到问题 我搜索并找到了这个答案 在scrollview中设置viewpager但在我的布局中不起作用
机器人:fillViewport ="真"
我的布局已锁定且无法滚动,或者在viewpager
中没有显示任何内容
这是我的布局xml:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#fff"
android:gravity="center"
android:orientation="vertical"
android:weightSum="3">
<de.hdodenhof.circleimageview.CircleImageView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1.5"
android:src="@drawable/photo_s" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight=".5"
android:gravity="center"
android:text="siavash Khorram"
android:textColor="#7b7b7b" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".5"
android:gravity="center"
android:orientation="horizontal"
android:weightSum="3">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Followers 1"
android:textColor="#000"
android:textSize="17dp" />
<TextView
android:layout_width=".1dp"
android:layout_height="match_parent"
android:layout_weight=".01"
android:background="#737373"
android:gravity="center" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Following 1"
android:textColor="#000"
android:textSize="17dp" />
<TextView
android:layout_width=".1dp"
android:layout_height="match_parent"
android:layout_weight=".01"
android:background="#737373"
android:gravity="center" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Coin 300"
android:textColor="#000"
android:textSize="17dp" />
</LinearLayout>
</LinearLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tablayout"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#fff"
app:tabMode="fixed"
app:tabSelectedTextColor="#000"
app:tabTextColor="#000"></android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager_main"
android:layout_width="match_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v4.view.ViewPager>
{{1}}
我的布局有
在viewpager中有一个grideview。
我想将scrollview设置为此布局