Jav*_*ier 12 android android-ui android-layout
我想制作像Google Cards这样的Android布局,我知道有一个开源库,但我只想要布局和灰色六角背景样式.我找不到有关这方面的信息,我怎么能做到这一点?我附加新的谷歌地图v7布局,这样你就可以得到这个想法.

Roc*_*Dev 16
bg_card.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#CCC" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="#FFF" />
</shape>
</item>
</layer-list>
Run Code Online (Sandbox Code Playgroud)
或者只是将卡片的背景设置为#FFF并添加到底部:
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#CCC" />
Run Code Online (Sandbox Code Playgroud)
注意:
对于大家谁不关心使用库,你应该使用CardView从Android的支持库.
示例代码.
| 归档时间: |
|
| 查看次数: |
14000 次 |
| 最近记录: |