3

给定

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".InboxActivity" >

    <!-- refresh button -->

    <Button
        android:id="@+id/button_refresh_inbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:onClick="refreshInbox"
        android:text="@string/refresh_inbox" />

    <LinearLayout
        android:id="@+id/inbox_container"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/button_refresh_inbox" >

        <ProgressBar
            android:id="@+id/inbox_prog_bar"
            style="@android:style/Widget.ProgressBar.Small"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <TextView
        android:id="@+id/empty_inbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/inbox_container"
        android:textIsSelectable="false" />

</RelativeLayout>

结果

当我运行应用程序时出现错误

E/AndroidRuntime(930): java.lang.ClassCastException: android.widget.ProgressBar
cannot be cast to android.widget.LinearLayout

有谁知道如何解决这一问题?

目标

在收件箱加载时显示进度条;然后让收件箱内容填充线性布局。

背景

一切都运行良好。我只是认为在收件箱加载时最好有一个进度条而不是空白屏幕。添加进度条导致错误。(我真的想在布局文件中指定进度条,而不是以编程方式)。

4

2 回答 2

9

刷新和项目 > 清理您的两个项目。

这与自动生成 R 引用时所做的一些混乱有关,在清理时它将创建一个具有正确 id 引用的新引用。

于 2013-06-25T16:30:14.187 回答
1

当它不是基类时,为什么要转换为 LinearLayout?

java.lang.Object

↳ android.view.View

↳ android.widget.ProgressBar
于 2013-04-14T16:14:20.870 回答