摘要:
package com.example.s02_e12_json3; import java.lang.reflect.Type; import java.util.Iterator; import java.util.LinkedList; import android.app.Activity; 阅读全文
摘要:
1 package com.json2; 2 3 import android.app.Activity; 4 import android.os.Bundle; 5 import android.view.View; 6 import android.view.View.OnClickListen 阅读全文
摘要:
1.MainActivity.java 1 package com.json; 2 3 import java.io.IOException; 4 import java.io.StringReader; 5 6 import android.annotation.SuppressLint; 7 i 阅读全文
摘要:
一、代码 1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 阅读全文
摘要:
一、简介 二、代码1.xml(1)activity_main.xml 1 <ListView 2 android:id="@id/android:list" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_con 阅读全文
摘要:
一、流程 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, 在这个方法里,通 阅读全文