一种Android 类似电影倒计时效果
2013-10-13 16:07:25 来源:WEB开发网核心提示:2、布局文件<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" and
2、布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/background_dark" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/buttonlinear" > <ImageView android:id="@+id/duocimin_dial" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:src="@drawable/iv_bg" /> <ImageView android:id="@+id/duocimin_progress" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:src="@drawable/min_progress" android:visibility="invisible" /> <ImageView android:id="@+id/duocimin_progress_hand" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:src="@drawable/min_progress_hand" /> <TextView android:id="@+id/duocitvTime" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="00:00.0" android:textSize="35sp" android:textStyle="bold" /> <LinearLayout android:id="@+id/duocihoursoflinear" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/duocitvTime" android:layout_centerHorizontal="true" android:gravity="center" android:orientation="horizontal" android:visibility="invisible" > </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignBottom="@+id/duocimin_dial" android:gravity="center_horizontal" android:orientation="horizontal" > <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="100sp" > </RelativeLayout> <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > </RelativeLayout> </LinearLayout> </RelativeLayout> <RelativeLayout android:id="@+id/buttonlinear" android:layout_width="match_parent" android:layout_height="74sp" android:layout_alignParentBottom="true" android:background="@drawable/v5_bottom_bar_bg_light" > <Button android:id="@+id/startbuttonduoci" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:background="@drawable/startback" android:text="开 始" /> </RelativeLayout> </RelativeLayout>
赞助商链接