gpt4 book ai didi

android - 如何使用 XML 布局作为可绘制图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:17:53 29 4
gpt4 key购买 nike

我想为 GalleryView 添加一个 XML Layout 作为 drawable image。可能吗?这是场景,我的应用程序中有一个 Layout。我想为我的画廊使用图像,这些图像看起来完全像 XML 布局(但背景和其他一些 View 颜色会有所不同)。因此,我不想为图库创建多个图像,而是想在图库 View 中将这些 xml 布局用作 drawables。可能吗,?如果是这样该怎么做?请帮助我的 friend 。

最佳答案

看我已经像这样创建了 XML

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@drawable/always_over" android:state_enabled="false"/>
<item android:drawable="@drawable/always_over" android:state_enabled="true" android:state_pressed="true"/>
<item android:drawable="@drawable/always_over" android:state_enabled="true" android:state_focused="true"/>
<item android:drawable="@drawable/always" android:state_enabled="true"/>

</selector>

然后在Button中设置

   <Button
android:id="@+id/btnAlways"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/always_xml" />

关于android - 如何使用 XML 布局作为可绘制图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11610809/

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