如何为android开发一个guard滑块控件
我不确定控件名称是什么,但我需要这样的名称(参见图片):
和我不知道如何开发它。在模拟器上(我得到了这个抛出层次视图透视图)称为 SlidingTab。
知道如何开始构建它吗?有一些已经构建好的东西我可以使用吗?
I'm not sure what's the control name, but I need something like this (see image):
and I have no idea about how to develop it. On emulator (I got this throw hierarchical view perspective) is called SlidingTab.
Any idea how to start building it? There is something already built I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SlidingTab 没有进入公共 View api,因此您必须从项目源代码中获取 SlidingTab.java 文件的副本。并将其包含在您的应用程序中。
这是它的一份副本
一旦将其放入项目中,实现起来就相当简单了。 这是一个 javadoc
编辑来自 SDK 内部的所有内容您想要的任何平台的文件夹。 data/res/ 你可以找到所有的系统绘图。我不久前从那里得到了 mdpi 和 hdpi 的文件,这里有一个包含这些文件的 zip 文件,可以帮助您入门。
http://dl.dropbox.com/u/5724095/Android%20Apps /SlidingTagRes.zip
SlidingTab didn't make it in to the public View api's so you have to grab yourself a copy of the SlidingTab.java file from the project source code. And include it in with your application.
Here is one copy of it
Implementing it is fairly straightforward once you get it in to your project. Here is a javadoc
Edit everything came from the SDK inside the folder for whichever platform you want. data/res/ you can find all of the system drawables. I got the mdpi and hdpi ones out of there a while back, here is a zip with those ones to get you started.
http://dl.dropbox.com/u/5724095/Android%20Apps/SlidingTagRes.zip
这就是标准的 Android 锁屏。
从 Git 中查看 AOSP 源代码并查找 LockScreen.java 类。
That is the Standard Android Lockscreen.
Check out the AOSP Source Code from Git and look for the Class LockScreen.java.