登录
首页 » Java » control

control

于 2012-01-06 发布 文件大小:156KB
0 222
下载积分: 1 下载次数: 39

代码说明:

  android常用的系统控件源码集,包括一些常用的界面控件的源码,比如菜单,单选按钮、按钮文字和背景的设置、带动画的按钮、按钮事件监听的实现、checkbox进行监听、EditText编辑框、单项选择、多项选择、Menu菜单、WebView使用等。( android common set of source code control systems, including some commonly used interface controls the source, such as menus, radio buttons, buttons, text and background settings, with animated buttons, the button event listener implementation, checkbox for monitoring, EditText edit box, single choice, multiple choice, Menu menu, WebView and so on. )

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Chat-Socket-Demo
    一个android端与Java后台通过socket进行传输的代码。(A Java back end android transmitted through the socket code.)
    2015-10-12 20:39:20下载
    积分:1
  • 银行贷款
     银行贷款按月还本付息的计算。使用表格模型,当改变贷款年限重新计算时,可更改表格的行数。提供此小应用程序,可方便计算年利息,运用JAVA的SWING组件,为你提供方便之余,还可以体验JavaSWING 组件的魅力。
    2022-03-04 07:25:13下载
    积分:1
  • java 宾馆管理系统
    java开发的宾馆管理系统,数据库用的是mysql里面有配置文档,可以根据这个进行配置
    2022-03-21 16:02:03下载
    积分:1
  • LifeCycle
    jsf开发 Web应用程序的开发与传统的单机程序开发在本质上存在着太多的差异,Web应用程序开发人员至今不可避免的必须处理HTTP的细节,而HTTP无状态的(stateless)本质,与传统应用程序必须维持程序运行过程中的信息有明显的违背,再则Web应用程序面对网站上不同的使用者同时的存取,其执行线程安全问题以及数据验证、转换处理等问题,又是复杂且难以解决的。 另一方面,本质上是静态的HTML与本质上是动态的应用程序又是一项违背,这造成不可避免的,处理网页设计的美术人员与程序设计人员,必须被彼此加入至视图组件中的逻辑互相干扰,即便一些视图呈现逻辑以标签的方式呈现,试图展现对网页设计美术人员的亲切,但它终究必须牵涉到相关的流程逻辑。 有很多方案试着解决种种的困境,而各自的着眼点各不相同,有的从程序设计人员的角度来解决,有的从网页设计人员的角度来解决,各种的框架被提出,所造成的是各种不统一的标签与框架,为了促进产能的集成开发环境(IDE)难以整合这些标签与框架,另一方面,开发人员的学习负担也不断的加重,他们必须一人了解多个角色的工作。(jsf development Web application development with traditional stand-alone program development, in essence there are too many differences, Web application developers staff has inevitably have to deal with the details of HTTP, and HTTP stateless (stateless) the nature of traditional application must maintain significant breaches in the program is running in. Moreover, Web applications face simultaneous access to different users on the website, its execution thread safety issues as well as data validation, conversion process is complex and difficult to solution. On the other hand, is essentially static HTML and essentially dynamic applications is a violation of which caused inevitable handling web design art programming staff, must each added to the view component logic interfere with each other, even if some view rendering logic to render label, trying to show a web design art staff cordial, but it eventually must be involved in the process logic. Many programs try to solve all the)
    2013-03-15 09:22:41下载
    积分:1
  • VCMMonitor
    安卓端的设备监控程序,用户安卓系统的外部设备监控(for android device monitor)
    2016-01-15 13:29:02下载
    积分:1
  • Java核心技术配套源码 原书第9版 corejava
    资源描述 基本信息 出版社: 机械工业出版社; 第1版 (2014年1月1日) 外文书名: Core Java Volume I-Fundamentals(Ninth Edition)
    2023-03-17 21:05:05下载
    积分:1
  • android 静态壁纸实例源码下载
    一款还不错的静态壁纸代码 核心代码:package com.example.wallpaperchange;import android.os.Bundle;import android.app.Activity;import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Intent;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast; public class MainActivity extends Activity { AlarmManager aManager; Button start,stop; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button)findViewById(R.id.start); stop = (Button)findViewById(R.id.stop); aManager = (AlarmManager)getSystemService(Service.ALARM_SERVICE); //指定ChangeService组件 Intent intent = new Intent(MainActivity.this,ChangeService.class); //创建PendingIntent对象 final PendingIntent pi = PendingIntent.getService( MainActivity.this, 0, intent, 0); start.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub aManager.setRepeating(AlarmManager.RTC_WAKEUP, 0, 5000, pi); start.setEnabled(false); stop.setEnabled(true); Toast.makeText(MainActivity.this, "壁纸定时更换启动成功", 5000).show(); } }); stop.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub start.setEnabled(true); stop.setEnabled(false); aManager.cancel(pi); } }); } }
    2014-06-03下载
    积分:1
  • 数字图像改进技术
    网页矩阵的收集和评估趋势
    2022-03-16 15:16:46下载
    积分:1
  • 一个 java 程序来模拟到 cnblogs 网站的登录
    这是一个简单的程序来模拟到著名中文博客网站---cnblogs 的登录。在此程序中,cookie 用于登录的网站,和您需要导入共同性-编解码器-1.4.jar,共同性-httpclient-3.1.jar,commons-日志-1.0.3.jar。请记住您使用自己的用户名和密码!
    2022-02-05 14:03:56下载
    积分:1
  • 签名工具2.0升级版
    说明:  可以修改各类机顶盒update.zip刷机包,解包后修改必须要用到的签名工具(You can modify all kinds of set top boxes update.zip Brush package, after unpacking must be used to modify the signature tool)
    2021-04-08 11:19:00下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载