Android 用户界面困难

发布于 2024-12-03 20:06:58 字数 1169 浏览 3 评论 0原文

我的布局非常完美,直到我决定添加滚动视图。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
    <ScrollView android:id="@+id/scrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" >
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/linearLayout1">
            <TableLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/tableLayout1"/>
        </LinearLayout>
    </ScrollView>
    <Button android:layout_width="match_parent" android:id="@+id/button1" android:text="Start" android:layout_height="50dip" android:onClick="getOutput"></Button>
</TableLayout>

我希望按钮保留在屏幕底部,实际上我希望滚动视图占据整个屏幕。仅使用内部表格布局即可正常工作。在图形布局预览中,它看起来像我想要的那样,但当我运行它时却不是。

我希望滚动视图占据整个屏幕,除了按钮之外,我希望按钮位于底部。

My layout was perfect until I decided to add a scrollview.

<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
    <ScrollView android:id="@+id/scrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" >
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/linearLayout1">
            <TableLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/tableLayout1"/>
        </LinearLayout>
    </ScrollView>
    <Button android:layout_width="match_parent" android:id="@+id/button1" android:text="Start" android:layout_height="50dip" android:onClick="getOutput"></Button>
</TableLayout>

I would like the button to stay at the bottom of the screen, I would actually like the scrollview to take up the entire screen. With just the inner table layout it works fine. In the Graphical Layout preview it looks how I want it, but not when I run it.

I would like the scrollview to take up the whole screen except the button, which I'd like to be at the bottom.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

傲影 2024-12-10 20:06:58

您可以使用RelativeLayout或LinearLayout作为根视图。赋予 Button 更多重量。这样 ScrollView 就不会占据全部内容。

you could use RelativeLayout or LinearLayout as Root view. Giving Button more weight. That way ScrollView won't take up the whole thing.

双手揣兜 2024-12-10 20:06:58

这应该有效

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" android:layout_height="fill_parent" 
    android:orientation="vertical">
    <ScrollView  android:layout_width="fill_parent" android:layout_height="0dip" 
        android:layout_weight="1.0">
        <LinearLayout android:layout_width="fill_parent" 
            android:layout_height="fill_parent" android:orientation="vertical" 
            android:id="@+id/linearLayout1"> 
            <TableLayout android:layout_width="fill_parent" 
                android:layout_height="fill_parent" 
                android:id="@+id/tableLayout1"/> 
        </LinearLayout>
    </ScrollView>
    <Button android:layout_width="fill_parent" android:layout_height="wrap_content" 
        android:text="Bottom Button"/>
</LinearLayout>

this should work

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" android:layout_height="fill_parent" 
    android:orientation="vertical">
    <ScrollView  android:layout_width="fill_parent" android:layout_height="0dip" 
        android:layout_weight="1.0">
        <LinearLayout android:layout_width="fill_parent" 
            android:layout_height="fill_parent" android:orientation="vertical" 
            android:id="@+id/linearLayout1"> 
            <TableLayout android:layout_width="fill_parent" 
                android:layout_height="fill_parent" 
                android:id="@+id/tableLayout1"/> 
        </LinearLayout>
    </ScrollView>
    <Button android:layout_width="fill_parent" android:layout_height="wrap_content" 
        android:text="Bottom Button"/>
</LinearLayout>
你另情深 2024-12-10 20:06:58

尝试将 ScrollView fillViewport 属性设置为 true。

Try setting ScrollView fillViewport attribute to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文