ProgressDialog是实用的,这就是为什么我创建一个布局并放置进度条和文本视图并将此布局放入对话框的原因。到目前为止,一切正常,但是在运行时我无法更改textview的文本。
这是我的代码(在OnCreate方法中被称为)
View progressLayout = LayoutInflater.FromContext(this).Inflate(Resource.Layout.progressbar,null);
var txtMessage = progressLayout.FindViewById<TextView>(Resource.Id.loading_msg);
txtMessage.Text = "My message is this";
txtMessage.SetText("my tesst", TextView.BufferType.Normal);
progressLayout.FindViewById<TextView>(Resource.Id.loading_msg)
.SetText("hobaa",TextView.BufferType.Normal);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.SetView(Resource.Layout.progressbar);
Dialog dialog = builder.Create();
dialog.SetTitle("My Title");
dialog.SetCancelable(false);
dialog.Show();
和我的progress.axml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:padding="13dp"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/loader"
android:layout_marginEnd="5dp"
android:layout_width="45dp"
android:layout_height="45dp"
/>
<TextView
android:layout_width="wrap_content"
android:text="Loading..."
android:textAppearance="?android:textAppearanceSmall"
android:layout_gravity="center_vertical"
android:id="@+id/loading_msg"
android:layout_toEndOf="@+id/loader"
android:layout_height="wrap_content" />
</LinearLayout>
答案 0 :(得分:2)
更改此
builder.SetView(Resource.Layout.progressbar);
到
builder.SetView(progressLayout);