{"id":25631821,"url":"https://github.com/natiginfo/easyfont","last_synced_at":"2026-06-13T21:30:19.631Z","repository":{"id":118600292,"uuid":"91442717","full_name":"natiginfo/EasyFont","owner":"natiginfo","description":"Android Library to set font of TextView, Button, EditText, and RadioButton in XML without editing Java code to set Typeface.","archived":false,"fork":false,"pushed_at":"2024-06-04T05:34:16.000Z","size":257,"stargazers_count":20,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-04T06:39:34.491Z","etag":null,"topics":["android","android-ui","easyfont","font","java","library"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/natiginfo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05-16T09:51:29.000Z","updated_at":"2024-06-04T06:39:41.561Z","dependencies_parsed_at":null,"dependency_job_id":"5a45e410-da27-4c2a-96e8-91dd13a104a3","html_url":"https://github.com/natiginfo/EasyFont","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natiginfo%2FEasyFont","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natiginfo%2FEasyFont/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natiginfo%2FEasyFont/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natiginfo%2FEasyFont/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/natiginfo","download_url":"https://codeload.github.com/natiginfo/EasyFont/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240235556,"owners_count":19769561,"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","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":["android","android-ui","easyfont","font","java","library"],"created_at":"2025-02-22T20:31:36.881Z","updated_at":"2026-06-13T21:30:19.550Z","avatar_url":"https://github.com/natiginfo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyFont for Android\n\nStandalone Android widget which lets you set font easily from layout.\n\n![alt text](screenshots/screenshot1.png)\n\n## Usage\n\nCreate ```assets``` folder in ```src/main```, and add your fonts there (inside ```src/main/assets/``` folder). Include ```TextView```, ```Button```, ```EditText```, or ```RadioButton``` in your layout file.\n\n```xml\n\u003ccom.koonat.easyfont.TextView\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:text=\"TextView\"\n    app:font_path=\"your-folder-where-you-put-fonts/font_name.ttf\"\n    /\u003e\n```\n\n```xml\n\u003ccom.koonat.easyfont.Button\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:text=\"Button\"\n    app:font_path=\"your-folder-where-you-put-fonts/font_name.ttf\" \n    /\u003e\n```\n\n```xml\n\u003ccom.koonat.easyfont.RadioButton\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:text=\"RadioButton\"\n    app:font_path=\"your-folder-where-you-put-fonts/font_name.ttf\"\n    /\u003e\n```\n\n```xml\n\u003ccom.koonat.easyfont.EditText\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:hint=\"EditText\"\n    app:font_path=\"your-folder-where-you-put-fonts/font_name.ttf\"\n    /\u003e\n```\n\n\n## Download\n\nThe latest version can be downloaded in [zip](https://github.com/natiginfo/EasyFont/archive/master.zip) and referenced by your application as a library project.\n\nYou can also depend on the library through Maven or Gradle:\n\n### Step 1 (Maven):\nAdd the JitPack repository to your build file\n```xml\n\u003crepositories\u003e\n\t\u003crepository\u003e\n\t    \u003cid\u003ejitpack.io\u003c/id\u003e\n\t    \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n\t\u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n### Step 2 (Maven):\nAdd the dependency\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.natiginfo\u003c/groupId\u003e\n    \u003cartifactId\u003eEasyFont\u003c/artifactId\u003e\n    \u003cversion\u003ev1.0.6\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Step 1 (Gradle):\nAdd it in your root build.gradle at the end of repositories:\n\n```groovy\nallprojects {\n\trepositories {\n\t\t...\n\t\tmaven { url 'https://jitpack.io' }\n\t}\n}\n```\n\n### Step 2 (Gradle):\nAdd the dependency\n\n```groovy\ndependencies {\n\tcompile 'com.github.natiginfo:EasyFont:v1.0.6'\n}\n```\n\n## License\n```\nCopyright 2017 Natig Babayev.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatiginfo%2Feasyfont","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnatiginfo%2Feasyfont","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatiginfo%2Feasyfont/lists"}