发布时间:2018-10-25编辑:佚名
吴嘉俊(Stef)高级讲师
拥有多年的Java开发经验,CTO,EasyJF开源团队创始人之一、负责
EasyJWeb项目的开发和维护。曾在国内多家大型软件公司负责公司内部框架的开发和维护,为多个大中型公司做过架构和技术咨询。曾组织开发了蓝源
装饰行业ERP、美国EMR、蓝源服装行业连锁管理系统、蓝源SaaS服务平台、蓝源Eloan互联网金融综合解决方案等系统产品。具有非常丰富项目开发和
管理经验。
擅长技术:主流JavaEE,Android技术,对 Spring、JPA、Hibernate、
MyBatis、Struts2、MongoDB、Redis等技术领域有深入研究。
吴老师有丰富的Java培训经验和IT培训行业顾问经验;授课激情,有感染力
,注重对底层原理的剖析和理解;善于培养学生对编程的兴趣;
Java和Python哪个就业情况更好?
首先,在了解一个语言就业好不好之前,
得先明确语言的发展方向
(1)Python
Python:数据分析,人工智能,web开发,测试,运维,web安全。
(2)Java
Java:web开发,大数据开发,安卓开发,服务器开发, 桌面开发,游戏开
发。
Java作为全球占比**高的开发语言,有着她**的优势,但因竞争太大
,就业方面并不比Python好。
而基于目前国内python人才需求呈大规模上升,薪资水平也水涨船高。学
python的人大多非科班出身。很多大学并没有开始此专业,因此就出现了大量的人才缺口。
从图上可以清晰的判断未来python就业形势,是大幅度上升的,加上互联网
行业正在进入成长爆发期,所以现在开始学习python的小伙伴果然是明智滴。
就业发展
与此同时,目前的互联网行业在高速发展的过程中,对于人工智能,数据分
析在北京、上海、深圳各大互联网发达的一线城市越发的火热,招聘优秀的Python程序员的难度尤为突出,为此选择就业Python更易成功。
Python人气爆棚的秘密
Python之所以排名上的如此之快,和它本身的特点也有关系,他是一种简单
、易用但专业、严谨的通用组合语言,或者叫胶水语言,让普通人也能够很容易的入门,把各种基本程序元件拼装在一起,协调运作。比如任何一个人
,只要愿意学习,可以在几天的时间里学会Python基础部分,然后干很多很多事情,这种投入产出比可能是其他任何语言都无法相比的而且Python的应
用很广,很多行业都会应用。
Java设计和编程思想
Java基础
环境搭建(包括Windows下和
Linux下的Java环境搭建)
Java语言基础
Java流程控制
Java常用类
Java面向对象
Java类与对象
介绍面向对象多态
接口与抽象类
Java高级
异常处理
I/O、JavaBean
反射
多线程
网络编程
泛型/Java集合类
Java与数据库
MySQL
ORACLE
JDBC开发与应用
Redis
课程优势
1.行业一线讲师讲解,深入浅出。
2.全面、完善的java课程体系,帮助学员更深更广的体验java魅力。
本阶段学习目标
1.精通java面向对象思想和基础语法。
2.熟练java中异常处理。
3.精通java中I/O操作。
4.掌握java中多线程操作。
5.精通java中集合类的使用。
6.掌握java中网络编程。
7.精通数据库/JDBC/redis/mysql的使用
本阶段学习效果
1.精通Java语言及其高级特性。
2.具备本地应用开发能力,能够开发一些本地软件,例如:聊天室,文件传
输助手等。
Android**AIDL实现跨进程更新UI
>
一、概述
本篇文章将和大家一起来学习AIDL实现跨进程更新UI。
需求是:在同一个应用中有两个Activity,MainActivity和TempActivity,这两个Activity不在同一个进程中。
现在需要**TempActivity来改变MainActivity中的视图,即修改MainActivity中TextView的显示内容并且添加两个Button,也就是实现跨进程更新UI这么一个功能。
对于这种跨进程更新UI的需求我们可以**AIDL或者BroadcastReceiver的方式实现,而本篇文章主要**AIDL的方式实现,如果你对AIDL
还不熟悉的话可以先看看我的这篇文章:Android AIDL入门篇
二、实现效果图
在MainActivity里点击“跳转到新进程ACTIVITY”按钮,会启动一个新进程的TempActivity,我们先点击“绑定服务”,这样我们就启动了服务,再点击“AIDL更新”按钮,**调用handler来实现跨进程更新UI,点击返回,我们发现MainActivity页面中的TextView内容已经更新了,并且新添加了两个按钮。
三、核心代码
IViewManager.aidl
里面提供了两个方法,一个是根据id更新TextView里面的内容,一个是根据id添加view视图
// IViewManager.aidl
package com.czhappy.remoteviewdemo;
// Declare any non-default types here with import statements
interface IViewManager {
void setTextViewText(in int id,in String text);//设置TextView的内容
void addView(in int layoutId); //添加View视图
}
rebuild PRoject让IDE工具自己生成AIDL接口对应的java文件。
ViewAIDLService.java
package com.czhappy.remoteviewdemo.service;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.Bundle;
import android.os.IBinder;
import android.os.Message;
import android.os.RemoteException;
import android.util.Log;
import com.czhappy.remoteviewdemo.IViewManager;
import com.czhappy.remoteviewdemo.activity.MainActivity;
/**
* Description:
* User: chenzheng
* Date: 2017/2/9 0009
* Time: 16:00
*/
public class ViewAIDLService extends Service {
private static final String TAG = "ViewAIDLService";
private Binder viewManager = new IViewManager.Stub(){
@Override
public void setTextViewText(int id, String text) throws RemoteException {
Message message = new Message();
message.what = 2;
Bundle bundle = new Bundle();
bundle.putInt("id",id);
bundle.putString("text",text);
message.setData(bundle);
new MainActivity.MyHandler(ViewAIDLService.this,getMainLooper()).sendMessage(message);
}
@Override
public void addView(int layoutId) throws RemoteException {
Message message = new Message();
message.what = 3;
Bundle bundle = new Bundle();
bundle.putInt("layoutId",layoutId);
message.setData(bundle);
Log.i(TAG,"thread name = " Thread.currentThread().getName());
new MainActivity.MyHandler(ViewAIDLService.this,getMainLooper()).sendMessage(message);
}
};
public ViewAIDLService() {
}
/**
* 当客户端绑定到该服务时调用
* @param intent
* @return
*/
@Override
public IBinder onBind(Intent intent) {
return viewManager;
}
}
MainActivity.java
package com.czhappy.remoteviewdemo.activity;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.RemoteViews;
import android.widget.TextView;
import com.czhappy.remoteviewdemo.R;
import java.lang.ref.WeakReference;
public class MainActivity extends AppCompatActivity {
private static String TAG = "MainActivity";
private static LinearLayout mLinearLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mLinearLayout = (LinearLayout) this.findViewById(R.id.mylayout);
}
public static class MyHandler extends Handler {
WeakReference<Context> weakReference;
public MyHandler(Context context, Looper looper) {
super(looper);
weakReference = new WeakReference<>(context);
}
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
Log.i(TAG, "handleMessage");
switch (msg.what) {
case 2: //修改MainActivity中TextView的内容
Bundle bundle = msg.getData();
TextView textView = (TextView) mLinearLayout.findViewById(bundle.getInt("id"));
textView.setText(bundle.getString("text"));
break;
case 3: //在MainActivity中添加View视图
LayoutInflater inflater = LayoutInflater.from(weakReference.get());
View view = inflater.inflate(msg.getData().getInt("layoutId"),null);
mLinearLayout.addView(view);
default:
break;
}
}
};
public void readyGo(View view){
Intent intent = new Intent(MainActivity.this, TempActivity.class);
startActivity(intent);
}
}
TempActivity.java
package com.czhappy.remoteviewdemo.activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import com.czhappy.remoteviewdemo.IViewManager;
import com.czhappy.remoteviewdemo.R;
import com.czhappy.remoteviewdemo.service.ViewAIDLService;
/**
* Description:
* User: chenzheng
* Date: 2017/2/9 0009
* Time: 16:05
*/
public class TempActivity extends AppCompatActivity {
private String TAG = "TempActivity";
private IViewManager viewsManager;
private boolean isBind = false;
private ServiceConnection viewServiceConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
Log.e(TAG,"onServiceConnected");
viewsManager = IViewManager.Stub.asInterface(service);
}
@Override
public void onServiceDisconnected(ComponentName name) {
//回收
viewsManager = null;
}
};
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.activity_temp);
}
/**
* 绑定服务
*/
public void bindService(View view) {
Intent viewServiceIntent = new Intent(this,ViewAIDLService.class);
isBind = bindService(viewServiceIntent,viewServiceConnection, Context.BIND_AUTO_CREATE);
}
/**
* 更新UI
*/
public void UpdateUI(View view){
try {
viewsManager.setTextViewText(R.id.mytext,"**AIDL跨进程修改TextView内容");
viewsManager.addView(R.layout.button_layout);
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
protected void onDestroy() {
super.onDestroy();
if(isBind){
unbindService(viewServiceConnection);
isBind = false;
}
}
}
配置文件AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.czhappy.remoteviewdemo">
<application android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/APPTheme">
<activity android:name=".activity.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.TempActivity"
android:process=":remote">
</activity>
<service android:name="com.czhappy.remoteviewdemo.service.ViewAIDLService"/>
</application>
</manifest>
四、源码**
http://download.csdn.net/detail/chenzheng8975/9751471
相关推荐:
苏州JAVA培训 苏州JAVA培训班 苏州JAVA培训机构