これはmain.axmlファイルです。Resource.IdがXamarinで動作していません
`<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myListView" />
</LinearLayout>`
これはMainActivity.csファイルである:
保護オーバーライドボイドOnCreate関数(バンドルのバンドル) {base.OnCreate(バンドル)。
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
Glop = new List<string>();
Glop.Add("Tom");
Glop.Add("Dick");
Glop.Add("Harry");
Name = FindViewById<ListView>(Resource.Id.myListView);
}
私はXamarin Androidでリストビューを作成しようとしています。
android IDをmyListViewに変更しましたが、アプリを再構築しようとしましたが、エラーとして表示されます。私は今どうすればいい ?
プロジェクトをクリーンにして再構築します。次に、新しい 'Id'定義を含めるべき' Resources.designer.cs'ファイルを再生成する必要があります。 –