我正在尝试构建一个具有多个时钟(不同区域)的简单主屏幕小部件.设计方面,我想使用CardVIEw(例如谷歌搜索栏)作为根布局元素,但由于小部件不支持,我该如何复制它?我可以以某种方式使用其父类,即帧布局吗?
解决方法:
您可以使用受支持的视图类并将背景drawable设置为此处定义的card_drawable:
https://gist.github.com/MarsVard/8297976
例如,对于linearLayout:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:padding="8dp" > <linearLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:background="@drawable/card_drawable" > <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:text="Test" /> </linearLayout></linearLayout>
总结 以上是内存溢出为你收集整理的android – 如何在主屏幕小部件中包含CardView全部内容,希望文章能够帮你解决android – 如何在主屏幕小部件中包含CardView所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)