您好我正在尝试从 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>
请帮帮我!