摘要: 用linearlayout完成这样的布局效果,这样的布局还是比较常用的,具体的xml代码如下: ... 阅读全文
posted @ 2016-01-15 13:41 hyyweb 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 最近在Android开发当中,用到的动画效果。public void onClick(View arg0) { // TODO 自动生成的方法存根 switch (arg0.getId()) { case R.id.danru://淡入淡出 AnimationSet aset=new An... 阅读全文
posted @ 2016-01-15 13:34 hyyweb 阅读(11293) 评论(2) 推荐(1) 编辑
摘要: ---天气插件------后台调用js---ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript", "");---客户端弹出确认框---OnClientClick="return confirm('您确认删除该记录... 阅读全文
posted @ 2016-01-15 11:30 hyyweb 阅读(723) 评论(0) 推荐(1) 编辑
摘要: 从当前activity中获取et 表单中的值,并跳转到myactivity.java所绑定的xml布局文件上。private EditText et;Intent intent=new Intent(MainActivity.this,myactivity.class); String str... 阅读全文
posted @ 2016-01-15 11:17 hyyweb 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 首页在AndroidManifest.xml中添加访问数据库权限 <uses-sdk android:minSdkVersion="7" /> <uses-permission android:name="android.permission.INTERNET" /> 在src中新建一个连接webs 阅读全文
posted @ 2016-01-15 11:08 hyyweb 阅读(1070) 评论(0) 推荐(0) 编辑