drawable/button_color.xml
最后,需要在包含button的xml文件里添加两项。假如是activity_main.xml 文件,我们需要在里加两项。
android:focusable="true" android:backgroud="@drawable/button_co...
分类:
其他好文 时间:
2014-05-23 07:26:47
阅读次数:
287
type:事件的类型,如onlick中的click;srcElement/target:事件源,就是发生事件的元素;button:声明被按下的鼠标键,整数,1代表左键,2代表右键,4代表中键,如果按下多个键,酒把这些值加起来,所以3就代表左右键同时按下;(firefox中
0代表左键,1代表中间键,...
-(UIButton *)shareButtonWithIcon:(NSString
*)iconName{ UIButton *button = [UIButtonbuttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(100.....
分类:
其他好文 时间:
2014-05-23 05:33:28
阅读次数:
221
iOS开发UI基础—手写控件,frame,center和bounds属性一、手写控件1.手写控件的步骤(1)使用相应的空间类创建控件对象(2)设置该控件的各种属性(3)添加控件到视图中(4)如果是button等控件,还需考虑控件的单击事件等(5)注意:View
Contollor和view的关系2....
分类:
移动开发 时间:
2014-05-23 04:56:23
阅读次数:
400
getJSON方法:jQuery.getJSON(url,data,success(data,status,xhr))$("button").click(function(){
$.getJSON("demo_ajax_json.js",function(result_data){ $.ea...
分类:
Web程序 时间:
2014-05-23 04:10:51
阅读次数:
251
Listview与Button点击事件冲突的菜鸟式解决方法...
分类:
移动开发 时间:
2014-05-22 23:49:14
阅读次数:
427
1.打电话 可以自己写界面,在button的单击事件中添加如下代码即可: Intent intent
= new Intent(); intent.setAction("android.intent.action.CALL");
intent.setData(Uri.parse("tel:"+ .....
分类:
移动开发 时间:
2014-05-22 16:41:15
阅读次数:
473
一、work线程向main线程发送数据(work线程发数据,main线程处理数据)public
class MainActivity extends Activity { private Button button; private TextView
textView; pr...
分类:
其他好文 时间:
2014-05-21 19:29:29
阅读次数:
234
使用意图调用内置应用程序
1、创建一个新的Android项目并命名为Intents,在main.xml文件中添加两个Button:
<Button
android:id="@+id/btn_webbrowser"
android:layout_width="fill_parent"
android:layout_heigh...
分类:
移动开发 时间:
2014-05-21 16:24:12
阅读次数:
298
这篇博客主要讨论了在EBS form 查询界面上, 点击 find 之后走了哪些代码流程, 数据库里面的值是怎样被赋值到界面上去的....
分类:
其他好文 时间:
2014-05-21 11:28:37
阅读次数:
421