首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

[Android学UI之二]兑现网易新闻客户端左右滑动广告

2012-11-26 
[Android学UI之二]实现网易新闻客户端左右滑动广告功能:左右滑动的广告使用说明:这次使用:android.support

[Android学UI之二]实现网易新闻客户端左右滑动广告


功能:

      左右滑动的广告


使用说明:

      这次使用:android.support.v4.view 来实现左右滑动。


这次简单实现了网易广告左右滑动效果。欢迎大家一起来学习讨论!!!


先看图吧,有图有真相!!!

[Android学UI之二]兑现网易新闻客户端左右滑动广告


接下来看看代码:

界面Activity:

<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/darker_gray"    tools:context=".MainActivity" >    <FrameLayout        android:id="@+id/linearlayout_images_slide"        android:layout_width="match_parent"        android:layout_height="wrap_content"        >        <android.support.v4.view.ViewPager            android:id="@+id/image_slide_page"            android:layout_width="fill_parent"            android:layout_height="150dip"            android:focusable="true" />        <RelativeLayout            android:id="@+id/layout_title_text"            style="@style/Transparent"            android:layout_width="match_parent"            android:layout_height="30dp"            android:layout_gravity="bottom"            android:background="#55000000" >            <RelativeLayout                android:id="@+id/layout_bar_image"                android:layout_width="match_parent"                android:layout_height="1dip"                android:layout_alignParentLeft="true"                android:layout_alignParentTop="true"                android:background="@drawable/image_page_bg" />            <RelativeLayout                android:layout_width="wrap_content"                android:layout_height="match_parent"                android:layout_alignParentLeft="true"                android:layout_alignParentTop="true"                android:orientation="horizontal" >                <TextView                    android:id="@+id/tvSlideTitle"                    android:layout_width="wrap_content"                    android:layout_height="match_parent"                    android:layout_marginLeft="10dp"                    android:gravity="center_vertical"                    android:textColor="@android:color/white"                    android:textSize="10dip" />                <LinearLayout                    android:id="@+id/layout_circle_images"                    android:layout_width="wrap_content"                    android:layout_height="15dp"                    android:layout_toRightOf="@id/tvSlideTitle"                    android:layout_alignParentRight="true"                    android:layout_marginRight="10dp"                    android:layout_marginTop="10dp"                    android:gravity="right|center" />            </RelativeLayout>        </RelativeLayout>    </FrameLayout></RelativeLayout>



源代码当然要分享给大家了,欢迎大家一起学习交流!!!


下载:http://download.csdn.net/detail/hudan2714/4809677





热点排行