如何为android开发一个guard滑块控件

发布于 2025-01-07 12:22:17 字数 198 浏览 0 评论 0原文

我不确定控件名称是什么,但我需要这样的名称(参见图片):

在此处输入图像描述

和我不知道如何开发它。在模拟器上(我得到了这个抛出层次视图透视图)称为 SlidingTab。

知道如何开始构建它吗?有一些已经构建好的东西我可以使用吗?

I'm not sure what's the control name, but I need something like this (see image):

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ら栖息 2025-01-14 12:22:17

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

﹏雨一样淡蓝的深情 2025-01-14 12:22:17

这就是标准的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文