将布局移动到屏幕顶部(带代码)

时间:2015-07-31 05:37:56

标签: android layout

我需要一些帮助来尝试执行以下操作。我有一个垂直的linearlayout包含一个horizo​​ntalscrollview和一个" 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>

enter image description here

enter image description here

0 个答案:

没有答案