Android 仿京东秒杀倒计时代码仿京东秒杀倒计时代码
3.8女王节活动马上开始了,很多电商搞起活动来吸引顾客,下面小编给大家带来了Android 仿京东秒杀倒计时
代码,需要的朋友参考下吧
效果图如下所示:
由于我仿的京东是分模块的,所以,这次主要描述秒杀模块!
首先设置好时间的背景首先设置好时间的背景
drawable文件下创建shape_miaosha_time.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#000"></solid>
<corners android:radius="2.5dp"></corners>
</shape>
然后主要布局,你可以单独书写,然后引用出去
**count_down.xml**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
评论0
最新资源