07 2011 档案
Test 巨鲸Widget
摘要: 阅读全文
posted @ 2011-07-26 15:17 榆钱沽酒 阅读(282) 评论(0) 推荐(0)
在右上角添加menu
摘要:@Override public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.result_menu, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // TODO Auto-generated method stub switc. 阅读全文
posted @ 2011-07-15 11:43 榆钱沽酒 阅读(2209) 评论(0) 推荐(0)
调用系统Gallery并返回选择的图片Url
摘要:private final static int LAUNCH_GALLERY = 3; //数字自定义 此处用来返回requestCode;在需要调用系统gallery的地方调用如下代码:Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Picture"),LAUNCH_GALLER 阅读全文
posted @ 2011-07-15 11:18 榆钱沽酒 阅读(1263) 评论(1) 推荐(0)