gpt4 book ai didi

android - 从 xml 文件创建可绘制对象

转载 作者:行者123 更新时间:2023-11-29 16:09:46 25 4
gpt4 key购买 nike

我正在使用 map 并尝试从我的布局文件中将标记创建为 Drawable 对象。我需要根据点的类型更改标记 View ,因此我将第一张图片声明为静态,将第二张图片声明为动态(动态更改),但它不起作用。

我的布局文件

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<ImageView
android:id="@+id/marker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/marker" >
</ImageView>

<ImageView
android:id="@+id/category"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/category_for_children" />
</RelativeLayout>

我的代码:

Resources res = getResources();
try {
marker = Drawable.createFromXml(res, res.getXml(R.layout.marker_on_map));
} catch (NotFoundException e) {
e.printStackTrace();
} catch (XmlPullParserException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

最佳答案

Drawable.createFromXml 不适用于将 LayoutsView 加载到 drawable 中!!请参阅此用法示例:

http://spearhend.blogspot.com/2012/04/load-android-drawable-from-xml.html

关于android - 从 xml 文件创建可绘制对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14419862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com