鱼C论坛

 找回密码
 立即注册
查看: 3013|回复: 1

[技术交流] kotlin for android 之物体的移动

[复制链接]
发表于 2017-12-8 08:20:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
        继续昨天的项目,修改fragment_blank_fragment2.xml文件:
<LinearLayout 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"
    tools:context="com.example.xinwei.fragmentkotlin.BlankFragment2">

    <TextView
        android:id="@+id/idtextb"
        android:layout_width="300dp"
        android:layout_height="70dp"
        android:background="#ff0000"
        android:layout_marginTop="150dp"
        android:layout_gravity="center_horizontal"
        android:text="@string/hello_blank_fragment" />

    <Button
        android:id="@+id/idbuttonc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="150dp"
        android:text="旋转" />
    <Button
        android:id="@+id/idbuttond"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="移动" />

</LinearLayout>
        这里就是多加了个按钮,然后修改BlankFragment2.kt:
package com.example.xinwei.fragmentkotlin

import android.app.Fragment
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.view.animation.Animation
import android.view.animation.RotateAnimation
import android.view.animation.TranslateAnimation
import android.widget.Button
import android.widget.TextView

class BlankFragment2 : Fragment() {
    var view1:View?=null
    var button1:Button?=null
    var button2:Button?=null
    var text:TextView?=null
    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                              savedInstanceState: Bundle?): View? {
        view1=inflater.inflate(R.layout.fragment_blank_fragment2, container, false)
        button1=view1?.findViewById<Button>(R.id.idbuttonc)
        button2=view1?.findViewById<Button>(R.id.idbuttond)
        text=view1?.findViewById<TextView>(R.id.idtextb)
        rotateRect()
        translateRect()
        return view1
    }

    private fun rotateRect() {
        var rotate=RotateAnimation(0.0f,360.0f,350.0f,35.0f)
        rotate.duration=3000
        button1?.setOnClickListener {
            text?.startAnimation(rotate)
        }
    }
    private fun translateRect() {
        var translate= TranslateAnimation(0.0f,0.0f,0.0f,350.0f)
        translate.duration=3000
        translate.repeatCount=Animation.INFINITE
        button2?.setOnClickListener {
            text?.startAnimation(translate)
        }
    }

}
        我写的 translateRect() 这个方法就是让矩形向下移动,进入app后先点按钮进入第二个fragment然后点底下移动的按钮,就可以了,效果图:
jdfw.gif

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-12-8 12:41:07 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 02:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表