桃词典 Peach Dictionary 简易英语词典app开发 安卓软件开发 Part 1
Posted SEMHAQ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了桃词典 Peach Dictionary 简易英语词典app开发 安卓软件开发 Part 1相关的知识,希望对你有一定的参考价值。
前言
由于笔者操作不当,将项目搞崩了,所以打算重写一遍,记下开发过程,作为学习记录。此软件能实现最普通的单词查询功能,也有启动动画、登录注册之类的功能,但笔者目前能力有限,未能将其完善,这是初学阶段的一个半成品,存在不少漏洞,望读者海涵。
导航:
桃词典 Peach Dictionary 简易英语词典app开发 安卓软件开发 The End 导航页及收尾工作
一、前期准备
1.启动动画
(1)创建一个empty activity,命名为Peach Dictionary。
(2)新建一个activity,作为软件启动动画,在manifest中将其设为主界面。
将.welcome设置为主界面
<activity
android:name=".welcome"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
activity_welcome.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".welcome">
<ImageView
android:id="@+id/imageView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline4"
app:srcCompat="@drawable/img" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.08" />
<ImageView
android:id="@+id/imageView5"
android:layout_width="233dp"
android:layout_height="179dp"
android:background="#00FFFFFF"
android:backgroundTint="#00FFFFFF"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/img_1" />
</androidx.constraintlayout.widget.ConstraintLayout>
在gradle里面添加
apply plugin: 'kotlin-android-extensions'
以运行kotlin代码
welcome.kt(此段引用,侵删)
package com.example.peachdictionary
import android.content.Intent
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import androidx.core.view.ViewCompat
import androidx.core.view.ViewPropertyAnimatorListener
import kotlinx.android.synthetic.main.activity_welcome.*
class welcome : AppCompatActivity()
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_welcome)
//设置图片动画
ViewCompat.animate(imageView4).apply
//缩放,变成1.0倍
scaleX(1.0f)
scaleY(1.0f)
//动画时常1秒
duration = 1000
//动画监听
setListener(object : ViewPropertyAnimatorListener
override fun onAnimationEnd(view: View?) //动画结束
//进入主界面,并结束掉该页面
startActivity(Intent(this@welcome, MainActivity::class.java))
finish()
override fun onAnimationCancel(view: View?)
override fun onAnimationStart(view: View?)
)
3.在manifest中将主题修改
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
实现效果:
以上是关于桃词典 Peach Dictionary 简易英语词典app开发 安卓软件开发 Part 1的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 python (django) 创建英语词典应用程序?