{"id":23129609,"url":"https://github.com/naxam/targettooltip-android-binding","last_synced_at":"2025-10-10T04:32:58.591Z","repository":{"id":85432441,"uuid":"96986833","full_name":"NAXAM/targettooltip-android-binding","owner":"NAXAM","description":"Xamarin Android Library - TargetToolTip for Android","archived":false,"fork":false,"pushed_at":"2017-07-12T10:41:39.000Z","size":215,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-10T04:32:01.864Z","etag":null,"topics":["target-tooltip-library","targettooltip","xamarin-android-binding"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NAXAM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-12T08:58:12.000Z","updated_at":"2017-08-17T15:06:39.000Z","dependencies_parsed_at":"2023-03-03T10:01:05.834Z","dependency_job_id":null,"html_url":"https://github.com/NAXAM/targettooltip-android-binding","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NAXAM/targettooltip-android-binding","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Ftargettooltip-android-binding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Ftargettooltip-android-binding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Ftargettooltip-android-binding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Ftargettooltip-android-binding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NAXAM","download_url":"https://codeload.github.com/NAXAM/targettooltip-android-binding/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NAXAM%2Ftargettooltip-android-binding/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002674,"owners_count":26083442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["target-tooltip-library","targettooltip","xamarin-android-binding"],"created_at":"2024-12-17T10:09:56.957Z","updated_at":"2025-10-10T04:32:58.586Z","avatar_url":"https://github.com/NAXAM.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"Android Tooltip - Xamarin Android Binding Library\n======================\n\nCreate Toast like tooltips, physical targets can be specified, or even points on screen.\nMany additional features and customizations. Just look at the samples Activities.\n\nInstallation\n===\n\n\tInstall-Package Naxam.TargetToolTip.Droid\n\n\nUsage\n===\n\n\tTooltip.make(this,\n\t\t\tnew Builder(101)\n\t\t\t.anchor(aView, Gravity.BOTTOM)\n\t\t\t.closePolicy(new ClosePolicy()\n\t\t\t    .insidePolicy(true, false)\n\t\t\t    .outsidePolicy(true, false), 3000)\n\t\t\t.activateDelay(800)\n\t\t\t.showDelay(300)\n\t\t\t.text(R.string.hello_world)\n\t\t\t.maxWidth(500)\n\t\t\t.withArrow(true)\n\t\t\t.withOverlay(true)\n\t\t\t.typeface(mYourCustomFont)\n\t\t\t.floatingAnimation(AnimationBuilder.DEFAULT)\n\t\t\t.build()\n\t\t).show();\n\nSee the inner [Builder][1] class for the complete set of options\n\nCustomization\n===\n\nTooltip style can be customized in your style object:\n\n    \u003c!-- default style --\u003e\n    \u003cdeclare-styleable name=\"TooltipLayout\"\u003e\n        \u003cattr name=\"ttlm_padding\" format=\"dimension\" /\u003e\n        \u003cattr name=\"ttlm_strokeColor\" format=\"color\" /\u003e\n        \u003cattr name=\"ttlm_backgroundColor\" format=\"color\" /\u003e\n        \u003cattr name=\"ttlm_strokeWeight\" format=\"dimension\" /\u003e\n        \u003cattr name=\"ttlm_cornerRadius\" format=\"dimension\" /\u003e\n        \u003cattr name=\"ttlm_arrowRatio\" format=\"float\" /\u003e\n        \u003cattr name=\"android:textAppearance\" /\u003e\n        \u003cattr name=\"ttlm_overlayStyle\" format=\"reference\" /\u003e\n        \u003cattr name=\"ttlm_elevation\" format=\"dimension\" /\u003e\n\n        \u003c!-- font file path inside your assets folder --\u003e\n        \u003cattr name=\"ttlm_font\" format=\"string\" /\u003e\n\n        \u003c!-- textview text gravity --\u003e\n        \u003cattr name=\"android:gravity\" /\u003e\n    \u003c/declare-styleable\u003e\n\n\nAnd this is the style for the overlay touch:\n\n    \u003cdeclare-styleable name=\"TooltipOverlay\"\u003e\n        \u003cattr name=\"android:color\" /\u003e\n        \u003cattr name=\"android:alpha\" /\u003e\n        \u003cattr name=\"ttlm_repeatCount\" format=\"integer\" /\u003e\n        \u003cattr name=\"ttlm_duration\" format=\"integer\" /\u003e\n        \u003cattr name=\"android:layout_margin\" /\u003e\n    \u003c/declare-styleable\u003e\n\nthen pass the style in the Builder method **withStyleId(int resId)**\n\n\nVideo\n===\n[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/QitX9bnsnP4/0.jpg)](http://www.youtube.com/watch?v=QitX9bnsnP4)\n\n\nScreenshots\n===\n![Screen shot](https://github.com/sephiroth74/android-target-tooltip/raw/master/screenshots/image01.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaxam%2Ftargettooltip-android-binding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaxam%2Ftargettooltip-android-binding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaxam%2Ftargettooltip-android-binding/lists"}