滚动Linearlayout(Android App编程)

时间:2013-11-11 16:15:12

标签: android android-layout

我已经阅读了很多关于滚动Linearlayout的内容,但还没有任何帮助。 它说你可以简单地把它放在ScrollView中,但每当我这样做时,我的应用程序在我尝试启动它时会崩溃。这是我的xml源代码:

<?xml version="1.0" encoding="utf-8"?>
<Scrollview xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <LinearLayout 
         android:id="@+id/lout"
         android:orientation="vertical"
         android:background="@drawable/bg"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:padding="5dp" >
    </LinearLayout>

</Scrollview>

我总是收到一条错误消息,指出应用程序无法使类ScrollView膨胀。 如果我知道这究竟是什么意思,我可能能够自己解决这个问题,但就我来自德国而且只有17岁而且对于Android开发来说也很新,我不知道;)

1 个答案:

答案 0 :(得分:2)

你有

<Scrollview 

小“v”。将其更改为

<ScrollView 

您还需要更改结束标记

</ScrollView>

错误膨胀类意味着它所说的内容。它在这里找不到具有该名称的类,因为大写是错误的。