我是Android开发的新手。
我想使用这样的按钮/图像:
在我的申请中。我不想重现它们(创建新的png文件等)。 我想像这样的资源在Android中的某个地方。
我如何使用它们?
Android开发中常见的是依赖系统内置图像吗?
答案 0 :(得分:0)
如果您的意思是您可以在哪里找到Android开发的图标,则可以找到Android图标here。
您可以找到有用的信息和一个zip文件的链接,其图标可以用于不同的设备屏幕。
答案 1 :(得分:0)
你可以在你的xml布局文件中写这样的smth:
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:src="@android:drawable/ic_menu_login"
android:id="@+id/my_button"/>
或者您可以从此处下载图标: https://developer.android.com/design/downloads/index.html
答案 2 :(得分:0)
请参阅开发者网站,它可能会对您有所帮助https://developer.android.com/design/downloads/index.html
要生成图片,请访问http://romannurik.github.io/AndroidAssetStudio/nine-patches.html 生成后按选择图像即可下载。
答案 3 :(得分:0)
在用于放置图像的android资源文件夹中。我们将通过代码获取图像。
尝试拍摄transprent图像。所以那不会有背景。
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:contentDescription="@string/logo"
android:src="@drawable/odesk_logo" />