首页 > TAG信息列表 > xml-drawable
将背景可绘制的状态设置为android按钮
我正在建立一个选择题问卷的android程序. 我的onCreate()方法中有以下内容 btnArray = new Button[5]; btnArray[0] = (Button) findViewById(R.id.bOp1); btnArray[1] = (Button) findViewById(R.id.bOp2); btnArray[2] = (Button) findViewById(R.id.bOp3); btnArray[3] = (Buttandroid-如何自定义微调框?
我想要微调框为下拉菜单,如下图所示, 我是这样创建的 xml布局: <Spinner android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="10dp&quandroid – 如何在可绘制的形状XML选择器中创建底部边框?
我正在尝试为我的按钮创建一个具有不同状态的可绘制形状.所以我写了这个: <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="true" android:color="@android:color/black" > <shape android:shape=&quAndroid:如何制作可绘制选择器
我觉得这是一个愚蠢的问题,但我仍然在这里.我有一个图像按钮,我希望每次点击它都能更改它的图像. API似乎表示,最好的方法是在包含选择器和值的drawable文件夹中创建xml资源.然而,当我去创建一个新的android xml资源时,drawables没有选项.我错过了什么?解决方法:据我所知,Android XMandroid – 我可以在drawable文件夹中有一个XML支持多个按钮的多种颜色/边框吗?
我有2个按钮,有两种不同的颜色和边框颜色.所以我需要在具有shape属性的drawable文件夹中创建XML,并且: <stroke android:width="1dp" android:color="#C5510E" /> <solid android:color="#F78340" />` 和另一个XML: <stroke android:width="1dp"更改可绘制名称后Android中的ClassCastException?
我正在写一个Android应用程序,并遇到了一个非常奇怪的情况.我有一个动画列表xml文件,我为一个名为’loading.xml’的动画加载图形创建,我将其设置为我的代码中ImageView的背景.它是这样的: public void startLoading() { if(!isLoading) { loading.setBackgroundResource(如何创建由两种颜色并排组成的android drawable?
Uisng XML是否可以创建一个drawable,其中一半是color1而另一半是color2?当我将drawable设置为视图的背景时,它应该如下图所示. 解决方法:通过xml完成: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <iandroid – Actionmenu:显示标题和图标
我在menu.xml中使用此代码: <item android:id="@+id/physics" android:icon="@drawable/ic_action_***" android:title="@string/physics" android:orderInCategory="2" android:showAsAction="alwandroid – 单击按钮时更改按钮的drawableLeft
当我点击它时,我有一个带有drawableLeftand的按钮我想只更改另一个图像的drawableleft.我必须使用什么java代码? XML: <Button android:id="@+id/docli_btn_apagar" android:layout_width="200dp" android:layout_height="70dp" android:background="@andandroid – 如何从Xml文件动态设置TextView的背景
我有一个像下面的xml文件,我将用它来设置Textview的背景: row.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <Android Drawable(进度条,开关)渲染问题
我正在尝试实现以下UI.我正在使用Eclipse和ADT插件. 以下是圆圈[白色深灰色](circle_shape.xml)的实现: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@andandroid – 通过xml设置drawable的alpha
我们可以通过XML为其禁用状态设置drawable的alpha吗?例如,通过使用android:state_disable.解决方法:实际上我们不能为drawable设置alpha而你应该使用它 setAlpha(int alpha)指定drawable的alpha值.设置Android Drawable项目的宽度?
我想要的是左边的红色部分背景.像这样的东西. 我尝试了很多东西(是否有任何WYSIWIG编辑器?我认为我运行了数百次.)如下文所述指定宽度不起作用. how to specify width and height of a drawable item 以下文章只告诉我,我不能使用百分比,现在如何应用宽度.Android Drawable: Specify可绘制的Android XML周围的奇怪的黑色边框
我正在绘制自定义标题以在我的应用程序中输入信息.我在xml中绘制了2个形状,然后将它们放置在布局中.然后将该布局放入我的主布局中.但是,每个包含的标题周围都有一个黑色边框.这似乎只适用于api 21设备.到底是怎么回事? circle.xml <shape xmlns:android="http://schemas.androandroid – 特定的单选按钮 – 为第一个/最后一个按钮设置不同样式的最简单方法
我想在我的布局中实现这种特定类型的单选按钮: =第一项,中间项和最后一项的不同图形,它们具有不同的圆角.我可以想象为3种类型的按钮使用不同的样式(使用自定义样式,有状态的drawables). 我正在使用自定义切换按钮实现此功能.我想利用drawable选择器为第一个和最后一个项目使用不同制作复杂的Android XML Drawables
基于android XML的drawables有多强大? 我真的想知道是否有可能只使用xml形状替换半复杂的位图资产,例如以下箭头图标. 到目前为止,除了基本形状之外,我还没有看到很多很好的例子.我知道< layer-list>可以用来组合形状,但我很难与它们合作.特别是,具有< layer-list>的形状的相对尺寸android – 使用自定义drawable xml的Ripple效果?
我需要为所有控件添加涟漪效果,以便为应用程序添加活力.由于我的最低api等级为18,所以我无法使用< ripple>在drawable xml中.此外,我的所有控件都可以自定义绘制为XML. 我的自定义抽屉控件 <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.and