MainActivity.java代码:btn1.setOnClickListener(new OnClickListener(){
public void onClick(View v){
intent=new Intent(this,Service1.class);
startService(intent);
}
});
Service1下面有红波浪线,错误是unkown entity 'Service1' 我已经在Service1.java里写了一个public class Service1,并且在AndroidManiFest里注册,为什么会有这个错误,求指导
Service1.java代码:
public class Service1 extends Service{
public IBinder onBind(Intent intent){
return null;
}
}
AndroidManiFest.xml代码:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".MainActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="Service1"></service>>
</application>
public void onClick(View v){
intent=new Intent(this,Service1.class);
startService(intent);
}
});
Service1下面有红波浪线,错误是unkown entity 'Service1' 我已经在Service1.java里写了一个public class Service1,并且在AndroidManiFest里注册,为什么会有这个错误,求指导

Service1.java代码:
public class Service1 extends Service{
public IBinder onBind(Intent intent){
return null;
}
}
AndroidManiFest.xml代码:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".MainActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="Service1"></service>>
</application>