Android Studio 首程序

一 如何构建第一个简单的AS应用。

1.准备好需要用得到图片移入mipmap中待用;

2.在xml中插入视图

    -----

           android:layout_width="60dp"

           android:layout_height="60dp"

            android:src="@mipmap/h"

             android:layout_centerHorizontal="true"

              android:layout_marginTop="5dp"

    />

3.在某一图片张加入onClick代码---类似java中的事件处理;

4.通过视图id读取视图存入链表中待用

5.读取链表

6.移动视图组件 (需要用到ObjectAnimator--------https://www.jianshu.com/p/a7558b090c5c(Android动画之ObjectAnimator))

效果图:


你可能感兴趣的:(Android Studio 首程序)