一、Activity的使用:package com.example.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import androi...
分类:
移动开发 时间:
2014-06-05 09:36:01
阅读次数:
276
package com.beyole.util;
import java.awt.BorderLayout;
import java.awt.Button;
import javax.swing.JFrame;
public class test7 {
public static void main(String[] args) {
JFrame frame=new JFrame("C...
分类:
编程语言 时间:
2014-06-05 04:30:51
阅读次数:
285
看好了,不是MFC工程,是VC工程,MFC的API和标准win32API还是不一样的,网上很多都是这种方法:
((CButton *)GetDlgItem(IDC_RADIO1))->SetCheck(TRUE); //RadioButton选上
但是在wince平台上不行,只能使用如下方法(#include windowsx.h>):
Button_SetCheck(GetD...
cocos2dx 3.0 CocoStudio1.4.1
做界面的时候用到了CocoStudio生成的UI.json文件,需要做语言本地化,论坛中有朋友给出了方法:
将本地化的图片设定格式,英文的叫button_store_normal.en.png 中文的叫button_store_normal.zh.png ......
按照这种规则,根据需要的语言来加载不同的图片
我...
分类:
Web程序 时间:
2014-06-03 03:28:59
阅读次数:
281
Android 除了可以加载xml文件,显示布局外,也可以代码生成布局,并通过setContentView(View view)方法显示布局。单独的一层布局,如一个主布局加一个控件(如Button\imageView等)动态生成代码比较简单,下面只给出示例代码:
package com.example.android_dongtaishengcheng;
import android.os...
分类:
移动开发 时间:
2014-06-03 01:45:13
阅读次数:
397
There are a few scenarios in which your activity is destroyed due to normal app behavior, such as when the user presses theBack button or your activity signals its own destruction
by calling finish(...
分类:
其他好文 时间:
2014-06-01 18:18:52
阅读次数:
550
版本:1.0日期:2014.5.17 2014.6.1版权:© 2014 kince 转载注明出处 在介绍SwitchButton之前,先来看一下系统Button是如何实现的。源码如下:@RemoteView
public class Button extends TextView {
public Button(Context context) {
this(conte...
分类:
移动开发 时间:
2014-06-01 17:27:10
阅读次数:
684
event事件对象:是指当前对象发生的事件的一些详细的信息在event这个对象里。event对象从哪里来?从事件函数中传入obj.//e就会当前的事件对象event}对象就有属性和方法:那么event对象也有属性和方法event的属性和方法:{属性:button:当前事件的方法中判断鼠标的按键位置有三个..
分类:
其他好文 时间:
2014-06-01 16:38:13
阅读次数:
242
document list & show close button on each tab in menu settings-preferences...
分类:
其他好文 时间:
2014-06-01 14:49:57
阅读次数:
163
分页bPaginite:true;是否启用分页功能sPaginationType:two_button 或者full_numbers
分页风格sFirst:告诉他第一页怎么写sLast:告诉他最后一页怎么写sNext:告诉他下一页怎么写sPrevious:告诉他上一页怎么写语言"sInfo":"共_...
分类:
Web程序 时间:
2014-05-31 20:58:59
阅读次数:
332