well, in some cases i guess you can. look at the manifest of the
Softkeyboard sample in android 1.5:

<manifest xmlns:android="http://schemas.android.com/apk/res/android";
        package="com.example.android.softkeyboard">
    <application android:label="@string/ime_name" android:debuggable="true">
        <service android:name="SoftKeyboard"
                android:permission="android.permission.BIND_INPUT_METHOD">
            <intent-filter>
                <action android:name="android.view.InputMethod" />
            </intent-filter>
            <meta-data android:name="android.view.im"
android:resource="@xml/method" />
        </service>
    </application>
</manifest>

in this case the SoftKeyboard extends InputMethodService
hope this helps,


On Mon, Aug 17, 2009 at 12:15 PM, James <[email protected]> wrote:

>
> Sorry,You can't.
>
> On Aug 17, 3:40 pm, Honest <[email protected]> wrote:
> > Hello,
> >
> > I read all the materials but in all that we are creating service from
> > the class which extends activity. Can i make project in which only
> > service is exists and the entry point of the application is even
> > Service.
> >
> > On Aug 13, 8:47 pm, "Roman ( T-Mobile USA)" <roman.baumgaert...@t-
> >
> >
> >
> > mobile.com> wrote:
> > > The answer to both of your questions  is yes.
> >
> > > Find information on this topic at
> >
> > >http://www.androidcompetencycenter.com/2009/01/basics-of-android-part.
> ..
> >
> > > --
> > > Roman Baumgaertner
> > > Sr. SW Engineer-OSDC
> > > ·T· · ·Mobile· stick together
> > > The views, opinions and statements in this email are those of the
> > > author solely in their individual capacity, and do not necessarily
> > > represent those of T-Mobile USA, Inc.
> >
> > > On Aug 13, 6:16 am, Honest <[email protected]> wrote:
> >
> > > > Hello,
> >
> > > > I want to hide my application from user so i just want to create
> > > > service. Can some one tell me how can i create service only  with out
> > > > activity. Can some one tell me can i create only the service in whole
> > > > project instead of activity. Is it feasible ?- Hide quoted text -
> >
> > - Show quoted text -
> >
>


-- 
Yaron Spektor

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to