PopupWindow可以实现浮层效果,而且可以自定义显示位置,出现和退出时的动画。首先解析一个ViewLayoutInflater
inflater = getLayoutInflater();final View view =
inflater.inflate(R.layout.popup, n...
1.android
弹出的软键盘遮挡住EditText文本框的解决方案:把Activit对应的布局文件filename.xml文件里的控件用比重设置布局。(例如:android:layout_weight="31")并且尽可能把高度设置成自适应的:android:layout_height="wra...
分类:
移动开发 时间:
2014-06-13 15:46:32
阅读次数:
406
最近想实现数据的延迟加载,网上找一下有很的列子,看了Masonry的例子启发,自己写了一个很简单的例子。View页面。@{ ViewBag.Title =
"瀑布流"; Layout = "~/Views/Shared/_Layout.cshtml"; }@sect...
分类:
其他好文 时间:
2014-06-13 00:19:13
阅读次数:
295
Android框架:Src:主要完成Java代码的编写Gen:系统自动生成的源代码目录
R.java:默认有attr(属性)、drawable、layout、string
4个静态内部类Assets:资源目录Bin:输出文件夹Res:图片、布局文件、字符串、菜单等文件 Drawable:存放工程图片...
分类:
移动开发 时间:
2014-06-12 17:56:51
阅读次数:
402
接上一篇瀑布流代码,简洁版的功能之上添加分页的功能Index.cshtml@using
PagedList.Mvc@model PagedList.StaticPagedList@{ ViewBag.Title = "瀑布流"; Layout =
"~/Views/Sha...
分类:
其他好文 时间:
2014-06-12 11:24:31
阅读次数:
330
1.AS代码<?xmlversion="1.0"encoding="utf-8"?>
<mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"layout="absolute"
width="200"height="200"creationComplete="initApp()">
<mx:Script>
<![CDATA[
importmx.controls.Alert;
importf..
分类:
Web程序 时间:
2014-06-10 23:45:06
阅读次数:
341
效果图:
设置全屏模式:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_layout);
getWindow().setLayout(LayoutParams....
分类:
其他好文 时间:
2014-06-10 17:31:09
阅读次数:
232
一:控制Dialog 的背景方法:1.定义一个无背景主题主题 2.创建Dialog dialog =
new Dialog(this,R.style.dialog); dialog.setContentView(R.layout.dialog_loading);
or:...
分类:
其他好文 时间:
2014-06-10 09:09:26
阅读次数:
251