在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、Tex...
分类:
移动开发 时间:
2015-06-20 14:17:47
阅读次数:
130
mMapView = (MapView)findViewById(R.id.mapView);
mMapView.showScaleControl(false);
int count = mMapView.getChildCount();
for (int i = 0; i < count; i++) {
View child = mMapView.getChildAt(i);
...
分类:
其他好文 时间:
2015-06-19 16:51:51
阅读次数:
285
准备工作:从官网上下载库文件,如果登陆不了,可以从这里下载集成好的.jar。下载之后把它作为你项目的支持库。发送一个简单的请求:final TextView mTextView = (TextView) findViewById(R.id.text);
...// 实例化请求队列
RequestQueue queue = Volley.newRequestQueue(this);
String ur...
分类:
其他好文 时间:
2015-06-19 12:00:42
阅读次数:
259
如果按照平常的设置,ScrollView里面的ListView是无法显示全部的,而且还不能滑动,从stackover flow搜的代码,亲测可以用!
1>给listView设置点击监视事件:
ListView lv = (ListView) findViewById(R.id.layout_lv);
lv.setOnTouchListener(new OnTouchListener(...
分类:
移动开发 时间:
2015-06-17 16:39:55
阅读次数:
181
Android-ProgressBar
一 ProgressBar
ProgressBar:进度条
二 SeekBar
ProgressBar的子集
可以拖动,常用于媒体播放, 下面是一个例子:
private void showSeekBar()
{
mSeekBar = (SeekBar)findViewById(R.id.seekBar1);
mSeekBar.setOn...
分类:
移动开发 时间:
2015-06-16 23:07:02
阅读次数:
326
2、
private WebView
webView = null;
private WebSettings
webSettings = null;
private
void initWeb() {
webView = (WebView)
this.findViewById(R.id.we...
分类:
移动开发 时间:
2015-06-16 16:54:37
阅读次数:
139
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、Tex...
分类:
移动开发 时间:
2015-06-16 16:30:08
阅读次数:
112
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、Tex...
分类:
移动开发 时间:
2015-06-15 21:59:36
阅读次数:
136
setContentView(R.layout.activity_main); Button b2 = (Button)findViewById(R.id.myButton2); setContentView(R.layout.fragment001...
分类:
其他好文 时间:
2015-06-15 18:33:51
阅读次数:
102
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、Tex...
分类:
其他好文 时间:
2015-06-14 12:22:25
阅读次数:
135