标签:
由于新的项目需要支持2.3.3版本的Android机型,额,2.3.3左右的已经份额非常非常小了,
还需要支持,真蛋疼。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity"> <android.support.v4.widget.SwipeRefreshLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/hello_world" /> </android.support.v4.widget.SwipeRefreshLayout> <android.support.design.widget.FloatingActionButton app:backgroundTint="#ff87ffeb" app:elevation="6dp" app:pressedTranslationZ="12dp" app:rippleColor="#33728dff" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right|bottom" android:src="@mipmap/ic_launcher" /> </RelativeLayout>
然后在尝试一下CardView在2.3.7上运行的效果:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity"> <android.support.v7.widget.CardView android:id="@+id/cardview" android:layout_width="match_parent" android:layout_height="80dp" android:layout_margin="8dp" app:cardBackgroundColor="@color/white" app:cardCornerRadius="8dp"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/hello_world" /> </android.support.v7.widget.CardView> </RelativeLayout>
可以看到这里可以设置CardView的背景颜色,还有圆角大小。
app:cardBackgroundColor="@color/white" app:cardCornerRadius="8dp"
版权声明:本文为博主原创文章,未经博主允许不得转载。
在Android2.3.3即minSdkVersion 10上使用android.support.v4.widget.SwipeRefreshLayout和android.support.design
标签:
原文地址:http://blog.csdn.net/zhuhai__yizhi/article/details/47279195