gpt4 book ai didi

android-layout - Android ScrollView 无法正确滚动

转载 作者:行者123 更新时间:2023-11-29 17:47:29 25 4
gpt4 key购买 nike

我一直在学习 thenewboston 的 android 教程,但一直停留在第 35 个位置。应用程序顶部应该有一个滚动条,其权重为 30。代码中有 6 个 textview/edittext 字段组,但为了简单起见,我删除了 5 个。我的问题是所有的文本和文本框都出现在页面上并且不限于给定的权重(它们都只出现在页面上)。有没有其他人遇到过这个问题或知道如何解决?

拜托,我是 stackoverflow 的新手。如果您认为这是一个愚蠢的问题,请向我解释为什么以及如何更好地提出这个问题。

这是它的样子:http://imgur.com/gJmOgqk

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="100" >

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="30" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />

<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
</EditText>

</LinearLayout>
</ScrollView>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="40"
android:orientation="vertical" >

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="30"
android:orientation="vertical" >


<AnalogClock
android:id="@+id/analogClock1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>

最佳答案

欢迎使用 StackOverflow!

一些事情,

  1. TheNewBoston 犯了一个错误。每当你使用你需要的重量将该元素的高度(或宽度)设置为 0dp。我变了在你的代码中。
  2. 您不应该依赖 eclipse 的 xml 工具,您应该始终尝试将您的应用程序启动到某种类型的设备(模拟器或最好是硬件)
  3. 我认为 ScrollBar 是指 ScrollView?因为您现在没有做任何事情来控制滚动条的外观。
  4. 布局的父级(在本例中)应该是 match_parent,而不是 wrap。 (这是你的主要问题)
  5. 此外,您实际上并不需要 weightSum,android 无论如何都会对所有权重求和。

    <ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="30" >

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TextView" />

    <EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" >
    </EditText>

    </LinearLayout>
    </ScrollView>

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="40"
    android:orientation="vertical" >

    <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />
    </LinearLayout>

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="30"
    android:orientation="vertical" >


    <AnalogClock
    android:id="@+id/analogClock1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
    </LinearLayout>

关于android-layout - Android ScrollView 无法正确滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25476637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com