0

您好我正在尝试从 XML 转换 ProgressDialog。

ProgressDialog progressBar =(ProgressDialog)findViewById(R.id.progressBar_first);

但是出现了这个错误:

Cannot cast from View to ProgressDialog

我的 XML 布局是:

<?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="match_parent"
    android:orientation="horizontal"
    android:background="@drawable/first_page" >

    <ProgressBar
        android:id="@+id/progressBar_first"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|center_horizontal" />
</LinearLayout>

请帮帮我!

4

2 回答 2

1

像这样写:

ProgressBar progressBar =(ProgressBar)findViewById(R.id.progressBar_first);
于 2013-08-26T12:50:14.847 回答
1

你应该改变它:

ProgressBar progressBar =(ProgressBar)findViewById(R.id.progressBar_first);
于 2013-08-26T12:51:25.257 回答