{"id":13848417,"url":"https://github.com/gpfduoduo/ModifiedStepsView","last_synced_at":"2025-07-12T13:30:55.542Z","repository":{"id":71920683,"uuid":"40952625","full_name":"gpfduoduo/ModifiedStepsView","owner":"gpfduoduo","description":"android下实现改进的StepsView  android 下的分布进度条","archived":false,"fork":false,"pushed_at":"2015-08-18T12:12:15.000Z","size":276,"stargazers_count":56,"open_issues_count":1,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-08-05T19:35:36.318Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/gpfduoduo.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}},"created_at":"2015-08-18T05:29:57.000Z","updated_at":"2022-09-22T08:36:07.000Z","dependencies_parsed_at":"2023-03-02T15:46:04.327Z","dependency_job_id":null,"html_url":"https://github.com/gpfduoduo/ModifiedStepsView","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpfduoduo%2FModifiedStepsView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpfduoduo%2FModifiedStepsView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpfduoduo%2FModifiedStepsView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpfduoduo%2FModifiedStepsView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gpfduoduo","download_url":"https://codeload.github.com/gpfduoduo/ModifiedStepsView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225825266,"owners_count":17529905,"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":[],"created_at":"2024-08-04T19:00:48.773Z","updated_at":"2024-11-22T00:30:21.733Z","avatar_url":"https://github.com/gpfduoduo.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"# ModifiedStepsView\n改进的StepsView\n\n根据StepsView进行改进，添加了每一步进行的等待动画和每一步的执行结果动画\n\n##具体的如下图所示\n\n![image](https://github.com/gpfduoduo/ModifiedStepsView/blob/master/ModifiedStepsView/gif/device-2015-08-18-135551.png \"效果图\")\n\n\n##使用方法\n\n###activity的xml文件中添加：\n\n       \u003ccom.example.lenovo.library.StepsView\n         android:id=\"@+id/steps_view\"\n         android:layout_height=\"wrap_content\"\n         android:layout_width=\"fill_parent\"\n         app:numOfSteps=\"4\"\u003e\u003c/com.example.lenovo.library.StepsView\u003e\n\n###在你的activity中调用\n\n\n         stepsView = (StepsView) findViewById(R.id.steps_view);\n         final String[] steps = {\"step1\", \"step2\", \"step3\", \"step4\"};\n         stepsView.setLabels(steps)\n                .setColorIndicator(Color.GRAY)\n                .setBarColor(Color.GREEN)\n                .setLabelColor(Color.BLACK);\n\n        new Thread() {\n            public void run() {\n                for (int i = 0; i \u003c steps.length; i++) {\n                    if(isStop) {\n                        break;\n                    }\n                    Message msg = new Message();\n                    msg.obj = i;\n                    handler.sendMessage(msg);\n                    try {\n                        Thread.sleep(4000);\n                    } catch (Exception e) {\n                    }\n                }\n                Message msg = new Message();\n                msg.obj = steps.length;\n                handler.sendMessage(msg);\n            }\n        }.start();\n'''\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgpfduoduo%2FModifiedStepsView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgpfduoduo%2FModifiedStepsView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgpfduoduo%2FModifiedStepsView/lists"}