ScrollView右边内容区域可以放ViewPager吗
ScrollView右边可以放ViewPager吗?我想做一个左边是菜单栏 然后右边内容区域放一个类似微信界面可以来回滑动的ViewPager
ScrollView右边可以放ViewPager吗?我想做一个左边是菜单栏 然后右边内容区域放一个类似微信界面可以来回滑动的ViewPager
2015-06-13
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ling="http://schemas.android.com/apk/res/com.ling.sportandmusic"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.ling.view.MyScrollView
android:id="@+id/my_scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
ling:mMenuRightPadding="80dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/left_menu"/>
<include layout="@layout/right_content2"/>
</LinearLayout>
</com.ling.view.MyScrollView>
</LinearLayout>
这是我第一个fragment的布局代码
举报