马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
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然后点底下移动的按钮,就可以了,效果图:
|