2
我正嘗試用多個時鐘(不同區域)構建一個簡單的主屏幕小部件。設計明智的是,我想使用CardView(例如谷歌搜索欄)作爲根佈局元素,但由於其不受小部件支持,我如何複製它?我能以某種方式使用其父類,即框架佈局嗎?如何在主屏幕小部件中包含CardView
我正嘗試用多個時鐘(不同區域)構建一個簡單的主屏幕小部件。設計明智的是,我想使用CardView(例如谷歌搜索欄)作爲根佈局元素,但由於其不受小部件支持,我如何複製它?我能以某種方式使用其父類,即框架佈局嗎?如何在主屏幕小部件中包含CardView
您可以使用一個支持視圖類和背景繪製設置爲這裏定義的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>
阿自定形狀。完美的作品,謝謝! –