在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 安卓图片拍照上传 示例源码

安卓图片拍照上传 示例源码

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:14.47M
  • 下载次数:41
  • 浏览次数:437
  • 发布时间:2018-01-24
  • 实例类别:Android平台开发
  • 发 布 人:34822822
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 拍照 上传 图片 安卓

实例介绍

【实例简介】服务端已验证通过,《猪肉溯源》app源码

【实例截图】

from clipboard

【核心代码】


package com.zte2014.zms.pork.activity;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewConfiguration;
import android.view.Window;
import android.widget.ImageView;
import android.widget.LinearLayout;

import com.zte2014.zms.pork.R;

public class IndexActivity extends Activity {

	
	 private ImageView index_menbtn;
	    private LinearLayout index_lay_sy;
	    private ImageView index_img_sy;
	    private LinearLayout index_lay_scan;
	    private ImageView index_img_scan;
	    
	    private LinearLayout index_lay_tz;
	    private LinearLayout index_lay_yl;
	    private ImageView index_img_yl;
	    private LinearLayout index_lay_rk;
	    private ImageView index_img_rk;
	    private LinearLayout index_lay_sc;
	    private ImageView index_img_sc;
	    private LinearLayout index_lay_fh;
	    private ImageView index_img_fh;
	    private LinearLayout index_lay_jc;
	    private ImageView index_img_jc;
	    private LinearLayout index_sccj;
	    private ImageView index_img_sccj;
	    private LinearLayout index_lay_sfjd;
	    private ImageView index_img_sfjd;
	    

	    
	    
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_index);
		
		bindViews();
		
		setOverflowShowingAlways();
		
		index_lay_tz.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				 Intent  scanIntent=new Intent();
				 scanIntent.setClass(IndexActivity.this,TzActivity.class);
				 startActivity(scanIntent);
				 overridePendingTransition(R.anim.slide_in_right,R.anim.slide_out_left);
			}
		});
		
		index_lay_scan.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				 Intent  scanIntent=new Intent();
				 scanIntent.setClass(IndexActivity.this,CaptureActivity.class);
				 startActivity(scanIntent);
				 overridePendingTransition(R.anim.slide_in_right,R.anim.slide_out_left);
				
			}
		});
		
		
		
		index_lay_sy.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				 Intent  scanIntent=new Intent();
				 scanIntent.setClass(IndexActivity.this,SyActivity.class);
				 startActivity(scanIntent);
				 overridePendingTransition(R.anim.slide_in_right,R.anim.slide_out_left);
				
			}
		});
		
	}

	
	private void setOverflowShowingAlways() {
		try {
			 //使用放射 ,欺骗系统,本手机是没有menu键的
			ViewConfiguration config = ViewConfiguration.get(this);
			Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
			menuKeyField.setAccessible(true);
			menuKeyField.setBoolean(config, false);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	
	


	@Override
	public boolean onMenuOpened(int featureId, Menu menu) {
		if (featureId == Window.FEATURE_ACTION_BAR && menu != null) {
			
			   //使用反射,强制显示图标
			if (menu.getClass().getSimpleName().equals("MenuBuilder")) {
				try {
					Method m = menu.getClass().getDeclaredMethod("setOptionalIconsVisible", Boolean.TYPE);
					m.setAccessible(true);
					m.invoke(menu, true);
				} catch (Exception e) {
				}
			}
		}
		return super.onMenuOpened(featureId, menu);
	}
 
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
	   

		getMenuInflater().inflate(R.menu.index, menu);
		return true;
	}

	@Override
	public boolean onOptionsItemSelected(MenuItem item) {
		// Handle action bar item clicks here. The action bar will
		// automatically handle clicks on the Home/Up button, so long
		// as you specify a parent activity in AndroidManifest.xml.
		int id = item.getItemId();
	 
		
		switch (id) {
		case R.id.actionbar_exit:
		{
		 
	 
					    
					new AlertDialog.Builder(IndexActivity.this).setTitle("警告!您将退出登录账号!")
					.setMessage("您确定要退出?")
					.setPositiveButton("确定", new DialogInterface.OnClickListener() {
						@Override
						public void onClick(DialogInterface dialog, int which) {
							
				/*			SharedPreferences sp = IndexActivity.this.getSharedPreferences("userinfo", Context.MODE_PRIVATE);
							Editor editor=sp.edit();
							editor.putBoolean("loginflage", false);
							editor.putString("username", "all");
							editor.commit();*/
						 
							 
							
							 Intent intent = new Intent(Intent.ACTION_MAIN);
							intent.addCategory(Intent.CATEGORY_HOME);
							intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
							startActivity(intent);
							System.exit(0); 
							 
						}
					}).setNegativeButton("取消", null).show();
			 
		 
			
			break;
		}
		case R.id.actionbar_settings:
		{
			return true;
		}
			   
			 

		default:
			break;
		}
		return super.onOptionsItemSelected(item);
	} 
	
	
	
	private  void bindViews() {

        index_menbtn = (ImageView) findViewById(R.id.index_menbtn);
   
        index_lay_sy=(LinearLayout)findViewById(R.id.index_lay_sy);
        index_img_sy = (ImageView) findViewById(R.id.index_img_sy);
        index_lay_scan = (LinearLayout) findViewById(R.id.index_lay_scan);
        index_img_scan = (ImageView) findViewById(R.id.index_img_scan);
 
        index_lay_tz=(LinearLayout)findViewById(R.id.index_lay_tz);
        index_lay_rk = (LinearLayout) findViewById(R.id.index_lay_rk);
        index_img_rk = (ImageView) findViewById(R.id.index_img_rk);
 
        index_lay_fh = (LinearLayout) findViewById(R.id.index_lay_fh);
        index_img_fh = (ImageView) findViewById(R.id.index_img_fh);
        index_lay_jc = (LinearLayout) findViewById(R.id.index_lay_jc);
        index_img_jc = (ImageView) findViewById(R.id.index_img_jc);
 
    }


}


实例下载地址

安卓图片拍照上传 示例源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警