0

R は変数に解決できません。そのため、「プロジェクトのセットアップを修正」しようとしましたが、 、 、 のオブジェクトなど、そのサブコンテンツのすべてを識別できませんxmlR.id.XそれらR.drawable.Yのいずれも識別されません。

http://developer.android.com/guide/topics/ui/controls/pickers.htmlガイドに従って、そのようなクラスを追加して、時間を選択するためのダイアログを表示しようとしました。

    Description Resource    Path    Location    Type
users cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 170    Java Problem
ic_launcher cannot be resolved or is not a field    MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 159    Java Problem
about cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 136    Java Problem
menu_user cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 133    Java Problem
imp_logo cannot be resolved or is not a field   MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 198    Java Problem
activity_main cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 44 Java Problem
timerCB cannot be resolved or is not a field    MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 64 Java Problem
timerTime cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 65 Java Problem
statusText cannot be resolved or is not a field MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 66 Java Problem
timerText cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 67 Java Problem
start_button cannot be resolved or is not a field   MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 68 Java Problem
stop_button cannot be resolved or is not a field    MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 69 Java Problem
activity_main cannot be resolved or is not a field  MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 123    Java Problem
menu_url cannot be resolved or is not a field   MainActivity.java   /RemoteSwitch/src/com/example/remoteswitch  line 130    Java Problem
4

4 に答える 4

2

Project -> Cleanを数回実行します。

そして、プロジェクトをビルドします。

R.javaそれでもフォルダーが見つからない場合は、ファイルにgenエラーがないかどうかを確認してください。layoutxml filesdrawables

これらのエラーを取り除いた後、もう一度 Clean と Build を実行します。

于 2013-02-22T14:17:54.193 に答える
1
  • Project - Cleanを選択してプロジェクトをクリーンアップします
  • が作成されていない場合R.javaは、gen フォルダーを削除してから、手動で再作成し、右クリックして、ビルド パス - ソース フォルダーとして使用し、プロジェクトを再ビルドします。
  • それでも見つからない場合R.javaは、XML ファイルの一部にエラーが含まれている可能性があります。
  • プロジェクトのオリジンが svn リポジトリである場合、コンパイラが認識しない目に見えない構成ファイルがいくつかある可能性があります。プロジェクトを右クリック -プロパティ - リソース - リソース フィルター - 追加 - すべて除外 - ファイルとフォルダー - 名前の一致 .svn
  • プロジェクトをダウンロードしてインポートした場合は、ターゲット (SDK) を確認し、必要なパッケージがインストールされていることを確認してください。
于 2013-02-22T14:22:00.650 に答える
1

上記の回答はそれを明確に述べています。あなたのレイアウトファイルと私からのヒントを見てください:strings.xmlファイルで埋めたとき、そこにいくつかの色をコピーするときに、タグでタグを閉じていることがわかりました。これは見過ごされがちであり、これを検出するクラスを作成するつもりです。これは、すぐには修正されないようです (修正とは、少なくとも私たちへの通知を意味します)。

于 2013-02-22T14:24:51.070 に答える