摘要:
一、流程 1.把要实现动画的一系列图片复制到res/drawable文件夹 2.在此文件新建一个xml文件用来组织图片 3.在mainactivity中用imageView.setBackgroundResource(R.drawable.anim_item)来使用这个动画 二、代码1.xml(1r 阅读全文
摘要:
1 public class MainActivity extends Activity { 2 private Button button = null; 3 private ImageView imageView = null; 4 5 @Override 6 public void onCre 阅读全文
摘要:
一、简介 二、代码1.res\anim下的xml(1)alpha.xml.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <set xmlns:android="http://schemas.android.com/apk/res/android" 3 阅读全文
摘要:
一、简介 二、代码1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/androi 阅读全文
摘要:
一、简介 二、代码1.xml(1)example_appwidget.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/andr 阅读全文
摘要:
一、代码流程 1.ExampleAppWidgetProvider的onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds),其中appWidgetIds表示widget的id, 在这个方法里,通 阅读全文