XML的Bitmap 和LayoutAnimation

学习Android之前并没有想到,android能实现background的背景平铺。不过以前学校Html时就很简单实现;

后来,有一位美工美女问我,能不能平铺,我那时候说,能,但不好实现。现在才知道,其实很简单的:

drawble文件夹下添加一个bitmap_fill_bg.xml

<?xml version="1.0" encoding="utf-8"?><!--设置tileMode的值可以实现重复填充--> <bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@mipmap/ic_launcher"
    android:tileMode="repeat"></bitmap>

关于LayoutAnimation的实现如下:

slide_left.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
    <translate
        android:duration="@android:integer/config_shortAnimTime"
        android:fromXDelta="100%p"
        android:toXDelta="0" />
</set>
java中实现如下:
public class LayoutAnim extends Activity {

    LinearLayout mainLayout;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_layout_anim);


        /**  * 布局动画不能直接:alphatrans……  * 需要使用LayoutAnimationController来控制  * 相当于一个运动集合  */   Animation animation=AnimationUtils.loadAnimation(this,R.anim.slide_left);
        LayoutAnimationController lac=new LayoutAnimationController(animation);

        mainLayout= (LinearLayout) findViewById(R.id.layout_anim_main);
        mainLayout.setLayoutAnimation(lac);
}
}

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...