内部framelayout scrollview无法正常工作。我在框架布局中添加了scrollview。但是滚动不起作用..还有其他可能的方法吗?..请建议我
MY

答案 0 :(得分:0)
你真的需要ScrollView + HorizontalScrollView吗?
试试这个
<RelativeLayout 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">
<FrameLayout android:id="@+id/fragment_container"
android:layout_width="match_parent" android:layout_height="match_parent" >
<HorizontalScrollView android:layout_width="match_parent"
android:layout_height="match_parent"> <TableLayout android:id="@+id/maintable"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:stretchColumns="1" > </TableLayout> </HorizontalScrollView> </
FrameLayout> </RelativeLayout>
答案 1 :(得分:0)
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="4dp" />
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableLayout android:id="@+id/maintable"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="1" >
</TableLayout>
</FrameLayout>
</ScrollView>
&#13;
答案 2 :(得分:0)