
Android
文章平均质量分 57
Android
_沧海桑田_
ACL/NAACL/EMNLP/COLING审稿人,
MOD大侠梦/MOD禾下霸业作者。
github.com/guotong1988
展开
-
android studio报错,unable to find valid certification path to requested target
文件把maven阿里云这些放前面。原创 2024-12-17 21:59:34 · 180 阅读 · 0 评论 -
调出 通讯录 、 Button用法
mButton01 = (Button)findViewById(R.id.myButton1);mButton01.setOnClickListener(new Button.OnClickListener() { @Override public void onClick(View v) { Uri uri = Uri.parse("原创 2012-02-03 09:09:32 · 683 阅读 · 2 评论 -
Service 和 intent 例子
http://www.websmithing.com/2011/02/01/how-to-update-the-ui-in-an-android-activity-using-data-from-a-background-service/原创 2012-02-03 09:53:52 · 629 阅读 · 0 评论 -
SQLiteOpenHelper
public class DatabaseHelper extends SQLiteOpenHelper {//类没有实例化,是不能用作父类构造器的参数,必须声明为静态private static final String name = "future"; //数据库名称private static final int version = 1; //数据库版本public原创 2012-03-27 11:02:51 · 873 阅读 · 0 评论 -
SimpleAdapter
list = buildListForSimpleAdapter(); SimpleAdapter notes = new SimpleAdapter(this, list, R.layout.item_row, new String[] { "name", "desc", "img" }, new int[] { R.id.name, R.id.desc, R.id原创 2012-04-05 17:33:16 · 746 阅读 · 0 评论 -
Handler and Thread
package gt.gt;import java.util.ArrayList;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;import android.app.Activity;import android.app.Prog原创 2012-04-05 20:15:37 · 617 阅读 · 0 评论 -
Handler and Thread
package gt.gt;import gt.gt.util.FetchData;import gt.gt.util.PreferencesUtil;import android.app.Activity;import android.app.ProgressDialog;import android.content.Intent;import android.os.Bu原创 2012-04-05 20:14:43 · 712 阅读 · 0 评论 -
showAlertDialog();
private void showAlertDialog(){ final AlertDialog alert=new AlertDialog.Builder(this).create(); alert.setMessage("这是您第一次登陆"); alert.setButton("登陆", new DialogInterface.OnClickListener()原创 2012-04-07 09:29:36 · 2161 阅读 · 0 评论 -
短信
SmsManager smsManager=SmsManager.getDefault();if(content.length()>70){ListcontengList=smsManager.divideMessage(content);for(String temp:contengList){smsManager.sendTextMessage(mobileNumber原创 2012-03-21 10:39:57 · 686 阅读 · 0 评论 -
gif动画效果 移动动画效果
http://schemas.android.com/apk/res/android" android:oneshot="false" > android:drawable="@drawable/plix_bottom_logo" android:duration="200"/> android:drawabl原创 2012-04-09 09:59:10 · 1253 阅读 · 0 评论 -
设置Activity的透明度及大小
Display display = getWindowManager().getDefaultDisplay(); // 为获取屏幕宽、高 Window window = getWindow(); LayoutParams windowLayoutParams = window.getAttributes(); // 获取对话框当前的参数值 windowLayoutParams.原创 2012-04-09 10:49:48 · 4683 阅读 · 0 评论 -
取得屏幕大小
DisplayMetrics dm; dm = this.getApplicationContext().getResources() .getDisplayMetrics(); int _screenWidth = dm.widthPixels; int _screenHeight = dm.heightPixels;原创 2012-04-10 10:57:39 · 712 阅读 · 0 评论 -
Activity接触点Override的方法
@Override public boolean onTouchEvent(MotionEvent event) { switch (event.getAction()) { case MotionEvent.ACTION_DOWN: break; default: break; } return super.onTouchEvent(eve原创 2012-04-10 11:27:05 · 682 阅读 · 0 评论 -
移动动画 移动之后停留在那里
http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > android:id="@+id/image原创 2012-04-10 14:27:38 · 791 阅读 · 0 评论 -
接上篇的Adapter的优化 Handler和Thread使用
Handler myHandler new Handler(){public void handleMessage (Message m){updateUIHere()}};new Thread(){ public void run(){ doStuff(); Message m= myHandler.obtainMessa原创 2012-04-09 09:50:04 · 4057 阅读 · 0 评论 -
myAdapter=new MyAdapter(RssActivity.this,R.layout.row);
http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > android:id="@+id/textV原创 2012-04-09 09:42:10 · 3545 阅读 · 0 评论 -
ListView实用参数
android:divider="@drawable/plix_listviewline"原创 2012-04-13 13:40:28 · 813 阅读 · 0 评论 -
RelativeLayout参数意义
android:gravity="center" 使子部件在此部件的中央android:layout_alignParentLeft="true" 靠在左边 可以和下一个联用android:layout_centerInParent="true" 靠在中间 可以和上一个联用 android:layout_centerHorizontal="true" 水平原创 2012-04-13 13:43:24 · 805 阅读 · 0 评论 -
gridview 实例
http://www.cnblogs.com/over140/archive/2010/10/19/1855366.html转载 2012-04-17 10:27:54 · 636 阅读 · 0 评论 -
Relative布局,一张图片在另一张上面的效果
android:id="@+id/RelativeLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" > android:id="@+id/wode_imageView1" android:layout_w原创 2012-05-02 16:04:50 · 2350 阅读 · 1 评论 -
TabHost tabs在上面的xml
android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > android:layout_width="fill_pa原创 2012-04-18 14:28:49 · 1503 阅读 · 0 评论 -
让tabhost的每个tab按钮显示自己的view
package com.ftonline;import android.app.TabActivity;import android.content.Intent;import android.os.Bundle;import android.view.LayoutInflater;import android.view.View;import android.wi原创 2012-04-19 11:11:59 · 1788 阅读 · 1 评论 -
android 多点触摸实现图片缩放
http://www.bangchui.org/simple/?t14130.html使用 原文有写最后imageView.setOnTouchListener(new MulitPointTouchListener ());android:scaleType="matrix"原创 2012-05-04 14:00:30 · 907 阅读 · 0 评论 -
button_press.xml 按钮点击/未点击 两个不同效果
原创 2012-05-07 09:34:04 · 1026 阅读 · 1 评论 -
android 权限
原创 2012-04-23 14:29:30 · 759 阅读 · 0 评论 -
saveFileToSD
public int saveFileToSD(InputStream is, String sPath) {if(null == sPath || 0 == sPath.trim().length()) return HttpDownMgrUrl.FILE_PATH_ERROR;if (!Environment.getExternalStorageState().equals(Envir原创 2012-05-31 11:14:59 · 625 阅读 · 1 评论 -
getBmpfromSd
public Bitmap getBmpfromSd(String savePath, String name) {if (savePath.trim() == null || savePath.trim().length() == 0|| name.trim() == null || name.trim().length() == 0)return null;String s原创 2012-05-31 16:36:39 · 672 阅读 · 3 评论 -
getImageBitmap方法, 传入R.drawable.* 取
public static Bitmap getImageBitmap(int resourImage,Context context) {InputStream is = context.getResources().openRawResource(resourImage);Bitmap bitmap = BitmapFactory.decodeStream(is);try {原创 2012-06-06 10:29:17 · 1386 阅读 · 0 评论 -
switch button
import android.app.Activity;import android.content.Intent;import android.graphics.Bitmap;import android.util.Log;import android.view.MotionEvent;import android.view.View;import android.view.View原创 2012-06-06 10:32:04 · 902 阅读 · 1 评论 -
android缩放图片
public static Bitmap scaleImg(Bitmap bm, int newWidth, int newHeight) { // 获得图片的宽高 int width = bm.getWidth(); int height = bm.getHeight(); // 设置想要的大小 int newWidth1 = newWidth;原创 2012-06-07 14:09:01 · 578 阅读 · 0 评论 -
检查网络连接
import android.content.Context;import android.net.ConnectivityManager;import android.net.NetworkInfo;public class NetUtil {public static boolean checkNet(Context context){ try {原创 2012-06-07 15:58:57 · 633 阅读 · 0 评论 -
判断SD卡是否可用
if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {// 判断SD卡是否可用alertSdErr();}public void alertSdErr() {AlertDialog.Builder ab = new AlertDialog.Builder(th原创 2012-06-07 16:00:29 · 780 阅读 · 0 评论 -
判断SD卡的空间
private int freeSpaceOnSd() {StatFs stat = new StatFs(Environment.getExternalStorageDirectory().getPath());double sdFreeMB = ((double) stat.getAvailableBlocks() * (double) stat.getBlockSize())原创 2012-06-08 09:47:45 · 531 阅读 · 0 评论 -
getXMLfromSd
public String getXMLfromSd(String savePath, String name) {if (savePath.trim() == null || savePath.trim().length() == 0|| name.trim() == null || name.trim().length() == 0)return null;String s原创 2012-06-08 09:49:15 · 525 阅读 · 1 评论 -
http请求代码
public void getRead(String productId,String userId,int mode, ImageView imageView){// String url = "http://host:port/projectname /init.jsp?type= productsubscribe &columntype=&productid="+productId+"&原创 2012-05-22 09:17:40 · 1028 阅读 · 0 评论 -
freeBitmap方法
public static void freeBitmap(Bitmap curBitmap){if (null != curBitmap) {if (!curBitmap.isRecycled()) {try {curBitmap.recycle();} catch (Exception e) {}}curBitmap = null;}}原创 2012-06-11 16:27:06 · 762 阅读 · 0 评论 -
scale image的方法
public static Bitmap scaleImg(Bitmap bm, int newWidth, int newHeight) {// 获得图片的宽高int width = bm.getWidth();int height = bm.getHeight();// 设置想要的大小int newWidth1 = newWidth;int newHeight1 = n原创 2012-06-11 16:48:34 · 1426 阅读 · 1 评论 -
File操作注意
File f=new File(saveFilePath);f.mkdirs();f = new File(f,saveFileName);boolean b2;Log.e("file",f.getAbsolutePath());// if(f.exists())f.delete();// boolean b=f.createNewFile();if(!(b原创 2012-07-04 17:06:26 · 882 阅读 · 0 评论 -
多线程下载类
import java.io.File;import java.io.RandomAccessFile;import java.net.HttpURLConnection;import java.net.URL;import android.util.Log;public class DownLoader{public static原创 2012-07-04 17:08:13 · 572 阅读 · 1 评论 -
软件更新时使用
/*** 安装apk*/public static final boolean installApk(Context context, String path) {File f = new File(path);if (!f.exists()) {return false;} else {Intent it = new Intent(Intent.ACTION_VI原创 2012-06-21 11:01:46 · 610 阅读 · 0 评论