我需要一些帮助来尝试执行以下操作。我有一个垂直的linearlayout包含一个horizontalscrollview和一个" regular" scrollview(第一张图片)里面有一个webview。我需要以编程方式移除水平的并向下移动和/或覆盖整个屏幕(第二个图像)。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_height="0"
android:layout_weigth="0.6">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
</LinearLayout>
</HorizontalScrollView>
<ScrollView android:layout_width="wrap_content"
android:layout_height="0"
android:layout_weigth="0.4">
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</WebView>
</ScrollView>
</LinearLayout>