Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7581917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:18:42+00:00 2026-05-30T18:18:42+00:00

Simple question… quite possibly not simple answers :) I want to write an accessibility

  • 0

Simple question… quite possibly not simple answers 🙂

I want to write an accessibility service for android in monodroid. I’m finding it difficult to work out the pieces. I can inherit from AccessibilityService, but there isn’t an AccessibilityServiceAttribute. I need specific content in the manifest file, but apparently the intent filter and service xml is not directly supported by monodroid… I believe.

I doubt this is something that many people have done, but as a beginner with Monodroid, I think I’m mainly just finding it difficult to put together the well supported “normal” app development, with the “supported” but not quite, accessibility service development.

I would appreciate any pointers. Thanks guys.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:18:43+00:00Added an answer on May 30, 2026 at 6:18 pm

    According to the docs:

    An accessibility is declared as any other service in an AndroidManifest.xml but it must also specify that it handles the “android.accessibilityservice.AccessibilityService” Intent. Failure to declare this intent will cause the system to ignore the accessibility service.

    Since it is declared the same way as any other service, you can make use of ServiceAttribute and IntentFilterAttribute to generate the entry in AndroidManifest.xml. For example:

    [Service]
    [IntentFilter(new[] { "android.accessibilityservice.AccessibilityService" })]
    public class MyAccessibilityService : AccessibilityService
    {
        public override void OnAccessibilityEvent(AccessibilityEvent e)
        {
    
        }
    
        public override void OnInterrupt()
        {
        }
    }
    

    When you build the application, Mono for Android will generate this in the manifest:

    <service android:name="sample.MyAccessibilityService">
      <intent-filter>
        <action android:name="android.accessibilityservice.AccessibilityService" />
      </intent-filter>
    </service>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Simple question is: why do you write char *foo; and not char* foo; Let
Simple question, hopefully an easy way and just want to verify I'm doing it
simple question about intent action naming convention: I have a new service that handles
Simple question, but I am not allowed to install this program at work to
Simple question, not sure there's a simple answer! So here's the code: (I've simplified
Simple question: I have a WinForms button, and I want to make it both
Simple question but it is killing. How do I write an expression, that return
Simple question, but I didn't know what's the keywords to Google. Suppose we want
simple question. I want to be able to run my executable with a program
Simple question, but could somehow not find any answer on google (maybe it's just

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.