public View getView(int position, View
convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item,
null); TextView tv = (TextV...
分类:
其他好文 时间:
2014-05-10 00:41:22
阅读次数:
283
windows平台可用net view;nbtstat-a ip
找到mac及主机名(netbios);在POSIX-linux系统下要是想用nmblookup那么你需要安装samba-client软件包;nmblookup:
command not foundgethostbyaddr getho...
分类:
系统相关 时间:
2014-05-10 00:09:13
阅读次数:
1160
public void replaceRightView(View v) {
int f = LinearLayout.LayoutParams.MATCH_PARENT;
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(f, f);
LinearLayout fragment_place = (Line...
分类:
其他好文 时间:
2014-05-09 22:50:20
阅读次数:
332
tableView 实现的方法 无分组的cell
#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.contacts.count;
}
- (UITable...
分类:
移动开发 时间:
2014-05-09 21:03:32
阅读次数:
424
ImageView.ScaleType.CENTER|android:scaleType="center"
以原图的几何中心点和ImagView的几何中心点为基准,按图片的原来size居中显示,不缩放,当图片长/宽超过View的长/宽,则截取图片的居中部分显示ImageView的size.当图片小于...
分类:
移动开发 时间:
2014-05-09 20:15:23
阅读次数:
355
在接入第三方渠道SDK的时候,经常会看到其配置文件AndroidManifest.xml有类似如下的定义:[html]view
plaincopy笔者这里在Application级别和Activity级别都定义了一个meta-data,我们如何来取得这两个组件的值呢?如下:[java]view
pl...
分类:
移动开发 时间:
2014-05-09 20:07:37
阅读次数:
449
Android写动画效果不是一般的麻烦,网上找了好久,终于解决了动画的问题,总结记录以共勉。仅以水平方向移动效果做说明,垂直方向类似。public
void slideview(final float p1, final float p2) { TranslateAnimation anima...
分类:
移动开发 时间:
2014-05-09 19:48:01
阅读次数:
305
View.OnKeyListener|_____onKey(Viewv, int
keyCode,KeyEventevent)View.OnTouchListener|_____onTouch(Viewv,MotionEventevent)View|____Override__________onK...
分类:
其他好文 时间:
2014-05-09 19:21:38
阅读次数:
234
废话不多说,这是地址:http://android.lineten.net/layout.php。
有图有真相,例如:
你的XML假如是这样:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation=...
分类:
移动开发 时间:
2014-05-09 15:20:54
阅读次数:
424
WebView长按复制 ~ 兼容所有安卓版本
mWebView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View view) {
try {
// 震动100毫秒
Vibrator vib = (Vibrator) getSystemServi...
分类:
Web程序 时间:
2014-05-09 14:40:57
阅读次数:
378