首先上圖: 我們可以看到上面這個我所編寫的界面上,戰狼這一個模塊則使用了cardview控制項,下麵我們來看看它是怎麼使用的:這裡是cardview線上性佈局下的的佈局代碼: 十分容易就可以搞定了,但是不要忘記了需要在build.gradle文件下使用我們引入的庫哈: 上面這行代碼是必不可少的啦! ...
首先上圖:
我們可以看到上面這個我所編寫的界面上,戰狼這一個模塊則使用了cardview控制項,下麵我們來看看它是怎麼使用的:
這裡是cardview線上性佈局下的的佈局代碼:
<android.support.v7.widget.CardView android:id="@+id/cv3" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" app:cardBackgroundColor="#c4c6c8" app:cardCornerRadius="10dp" app:cardElevation="10dp" app:cardPreventCornerOverlap="true" app:layout_constraintTop_toTopOf="parent"> <ImageView android:layout_width="160dp" android:layout_height="80dp" android:src="@drawable/timg" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:layout_marginLeft="170dp" android:textColor="#000000" android:text="戰狼2" android:textSize="20sp"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="170dp" android:text="感受中華民族的崛起!為中華復興而奮鬥!" android:textColor="#000000" android:layout_marginTop="40dp"/> </android.support.v7.widget.CardView>
十分容易就可以搞定了,但是不要忘記了需要在build.gradle文件下使用我們引入的庫哈:
implementation'com.android.support:cardview-v7:28.0.0'
上面這行代碼是必不可少的啦!