资源简介
Android 抛物线动画, 用 Android Object Animator实现
代码片段和文件信息
package com.example.testpicture;
import android.animation.Keyframe;
import android.animation.objectAnimator;
import android.animation.PropertyValuesHolder;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.onclickListener;
import android.view.ViewGroup.LayoutParams;
import android.view.animation.BounceInterpolator;
import android.view.inputmethod.EditorInfo;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.example.model.ParabolaAlgorithm;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout layout = new LinearLayout(this);
layout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT LayoutParams.MATCH_PARENT));
layout.setPadding(0 100 0 0);
layout.setOrientation(LinearLayout.VERTICAL);
final ImageView imageView = new ImageView(this);
imageView.setImageResource(R.drawable.face_0_063);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT
LayoutParams.WRAP_CONTENT);
params.setMargins(0 200 0 0);
imageView.setLayoutParams(params);
final TextView textView1 = new TextView(this);
textView1.setText(“第一坐标点(空格区分x y)“);
layout.addView(textView1);
final EditText editText1 = new EditText(this);
editText1.setPadding(20 10 20 10);
editText1.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT LayoutParams.WRAP_CONTENT));
editText1.setHint(“第一坐标点(空格区分x y)“);
editText1.setText(“6 15“);
editText1.setSingleLine();
editText1.setInputType(EditorInfo.TYPE_CLASS_NUMBER);
layout.addView(editText1);
final TextView textView2 = new TextView(this);
textView2.setText(“第二坐标点(空格区分x y)“);
layout.addView(textView2);
final EditText editText2 = new EditText(this);
editText2.setHint(“第二坐标点(空格区分x y)“);
editText2.setPadding(20 10 20 10);
editText2.setSingleLine();
editText2.setInputType(EditorInfo.TYPE_CLASS_NUMBER);
editText2.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT LayoutParams.WRAP_CONTENT));
editText2.setText(“50 70“);
layout.addView(editText2);
final TextView textView3 = new TextView(this);
textView3.setText(“第三坐标点(空格区分x y)“);
layout.addView(textView3);
final EditText editText3 = new EditText(this);
editText3.setHint(“第三坐标点(空格区分x y)“);
editText3.setPadding(20 10 20 10);
editText3.setSingleLine();
editText3.setInputType(EditorInfo.TYPE_CLASS_NUMBER);
editText3.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT LayoutParams.WRAP_CONTENT));
editText3.setText(“120 -100“);
layout.addView(editText3);
Button button = new Button(this);
button.setText(“test“);
button.setPadding(20 10 20 10);
button.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARE
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 885 2014-12-30 11:19 ParabolaAlgorithm.java
文件 5098 2015-11-10 18:39 MainActivity.java
相关资源
- Qt on Android调用Jar包
- android adb
- 查看包名和类名的apk
- volley jar包
- Android 学生签到系统源码
- android蓝牙串口编程官方指导非常详细
- Android理财通助手源码
- android手机蓝牙自动配对,连接,互发
- android通用蓝牙调试助手
- Android 引导页动态添加圆点指示器
- android实现数据库的增删改查实例代码
- Android学生考勤系统
- android 仿iphone 滑动开关按钮 switch
- android自定义键盘支持遥控器
- microlog4android-1.0.0.jar和microlog.properti
- 在eclipse中制作的android 计算器程序
- Android日历完整实现
- Android实现计算器
- android日记本源码
- SensorUdp app for android 用Matlab采集手机传
- android高仿QQ登陆界面Demo
- 代码开启/关闭GPS
- Android 用Interpolator实现抛物线动画
- Android课程设计之视频播放器
- 某课网Android通用框架设计与完整电商
- android cmd命令行工具
- android入门的数独小游戏
- Android蓝牙操作源代码
- android个人日程管理系统todolist
- Android应用安装APK方法汇总源码
评论
共有 条评论