在 Android 文件夹中哪里可以找到 Honeycomb 后退按钮?
我想知道在哪里可以找到 Android 平板电脑模拟器使用的后退按钮图像。
I would like to know where can I find the back button image, the one used by the android tablet emulator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Android平台使用的所有图片都放在res目录下的drawable文件夹中。
1.打开android根目录(安装目录)。
2.导航到res目录。E:\android-sdk-windows\platforms\android-12\data\res
All the images which are used by the android platform are placed in the drawable folder under the res directory.
1.Open the android root directory(Installed directory).
2.Navigate to the res directory.E:\android-sdk-windows\platforms\android-12\data\res
您可以在 sdk 文件夹中的 android.jar 文件中找到它。
例如我的位于 C:\Program Files (x86)\Android\android-sdk\platforms\android-8\android.jar (对于 SDK 版本 8,要获得不同的版本,请更改“android-8”部分路径)
您可以使用 winzip/7z 等解压 .jar,因为它只是一个伪装的 zip 文件。然后您将在解压的文件夹中找到drawables文件夹。
You will find it in the android.jar file in your sdk folder.
For example mine is in C:\Program Files (x86)\Android\android-sdk\platforms\android-8\android.jar (for SDK version 8, to get a different version the change the "android-8" part of the path)
You can extract the .jar using winzip/7z etc as it is just a zip file in disguise. You will then find the drawables folder in the folders you unzipped.