• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

EnergyTree: 仿蚂蚁森林收集能量(Collect forest energy animation)

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

EnergyTree

开源软件地址:

https://gitee.com/YangsBryant/EnergyTree

开源软件介绍:

EnergyTree

仿蚂蚁森林收集能量

输入图片说明

使用方式

取出所需文件:module文件夹下的BallModel和TipsModel实体类,以及EnergyTree控件类,还有所需item布局和资源文件

中心点说明

根据EnergyTree控件类的collectAnimator(final View view,boolean isRun)方法,可知道球移动的终点是此布局的中心点,即mHeight/2 andr mWidth/2-60可以根据自己的需求改变中心点。

其他说明

isCollectBall 和 isCollectTips 分别可以控制 点击能量球或者Tips提示,是否可以移动消失

能力球最多可以有七颗

Tips提示框最多4个

EnergyTree类的107行(X轴)以及108行(Y轴),可以调节Tips提示框的XY轴位置

主要代码

public class MainActivity extends AppCompatActivity {    private EnergyTree mWaterFlake;    private List<BallModel> mBallList;    private List<TipsModel> mTipsList;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        initData();        mWaterFlake = findViewById(R.id.custom_view);        Button mBtn = findViewById(R.id.btn);        mBtn.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                mWaterFlake.setModelList(mBallList,mTipsList);            }        });        mBtn.post(new Runnable() {            @Override            public void run() {                mWaterFlake.setModelList(mBallList,mTipsList);            }        });        mWaterFlake.isCollectTips(false);        mWaterFlake.setOnBallItemListener(new EnergyTree.OnBallItemListener() {            @Override            public void onItemClick(BallModel ballModel) {                Toast.makeText(MainActivity.this,"收取了"+ballModel.getValue()+"能量",Toast.LENGTH_SHORT).show();            }        });        mWaterFlake.setOnTipsItemListener(new EnergyTree.OnTipsItemListener() {            @Override            public void onItemClick(TipsModel tipsModel) {                Toast.makeText(MainActivity.this,tipsModel.getContent(),Toast.LENGTH_SHORT).show();            }        });    }    private void initData() {        mBallList = new ArrayList<>();        mBallList.add(new BallModel("能量","5g"));        mBallList.add(new BallModel("能量","7g"));        mBallList.add(new BallModel("能量","15g"));        mBallList.add(new BallModel("能量","1g"));        mBallList.add(new BallModel("能量","2g"));        mBallList.add(new BallModel("能量","9g"));        mBallList.add(new BallModel("能量","9g"));        mTipsList = new ArrayList<>();        mTipsList.add(new TipsModel("Tips:缺水"));        mTipsList.add(new TipsModel("Tips:风大"));        mTipsList.add(new TipsModel("Tips:暴雨"));        mTipsList.add(new TipsModel("Tips:干燥"));    }}

主布局

<?xml version="1.0" encoding="utf-8"?><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:orientation="vertical"    android:background="@mipmap/background">    <LinearLayout        android:layout_width="match_parent"        android:layout_height="match_parent"        android:gravity="center"        >        <ImageView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:background="@mipmap/tree" />    </LinearLayout>    <com.bryant.EnergyTree        android:id="@+id/custom_view"        android:layout_width="match_parent"        android:layout_height="match_parent"/>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="match_parent"        android:gravity="bottom"        android:padding="10dp"        >        <Button           android:id="@+id/btn"           android:text="重置"           android:layout_width="wrap_content"           android:layout_height="wrap_content"        />    </LinearLayout></RelativeLayout>

联系QQ:961606042


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap