我为我的 android 应用程序(FileChooserExampleActivity.xml)制作了一个 xml 文件,并将其注册到Andriodmanifest.xml文件中,但是当我要在FileChooserExampleActivity.java中调用它时。Eclipse 无法将其识别为接口
错误是:
此行有多个标记 - FileChooserExampleActivity 无法解析或不是字段
Androidmanifest.xml 有什么问题吗?
Manifest.xml 是:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ipaulpro.afilechooserexample"
android:versionCode="2"
android:versionName="1.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".FileChooserExampleActivity" android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
FileChooserExampleActivity 类是:
public class FileChooserExampleActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.id.FileChooserExampleActivity);
}