项目需求:图文走动,从右往左,图文从右逐渐露出,走完图文后控件隐藏。
//////////////////////////////////////////////布局文件//////////////////////////////////////////
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="#cc0bbe06">
<RelativeLayout
android:id="@+id/animation_layer"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<ImageView
android:id="@+id/chat_bulletin_img"
android:layout_width="13dp"
android:layout_height="13dp"
android:layout_centerVertical="true"
android:background="@drawable/chat_room_bulletin" />
<TextView
android:id="@+id/bulletin_txt"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@id/chat_bulletin_i