我在这看什么?创建我自己的图像并使用它? ?androID:attr / windowTitleStyle样式似乎会根据自定义标题栏的高度进行扩展;所以我不确定它实际上是一个单一的图像.
我尝试用一点半透明的方式抛出一个linearLayout(例如:使颜色为#800000FF),但我在此linearLayout后面的渐变样式消失了.
谢谢你的帮助
更新:
根据我在下面的回答,我发现我可以创建一个定义渐变的XML文件并使用它.它在我的布局上的linearLayout(Titlebar_gradIEnt)中工作正常.但是,它不适用于最外层的linearLayout(background_gradIEnt).有人能告诉我为什么吗?据我了解,ListVIEw应该是透明的……
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="@drawable/background_gradIEnt" > <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="horizontal" androID:layout_wIDth="fill_parent" androID:layout_height="47dip" androID:background="@drawable/Titlebar_gradIEnt" androID:gravity="center"> <TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_weight="1" androID:text="Item" androID:paddingleft="5dip" androID:maxlines="1" androID:ellipsize="end" /> </linearLayout> <ListVIEw androID:ID="@+ID/androID:List" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:paddingtop="10dip" androID:clickable="false" /> <TextVIEw androID:ID="@+ID/androID:empty" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" /></linearLayout>解决方法 是的,我也看到了一个例子,它给渐变颜色提供了线性布局或者这个网站上的按钮 http://android-codes-examples.blogspot.com/2011/04/animated-customized-popup-transparent.html 总结
以上是内存溢出为你收集整理的android – 渐变样式全部内容,希望文章能够帮你解决android – 渐变样式所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)