当前位置: 编程技术>移动开发
本页文章导读:
▪eoe特刊(1-20期)网盘上载 eoe特刊(1-20期)网盘下载
【eoeAndroid特刊】第一期+Andriod+1.5+SDK简介.pdf【eoeAndroid特刊】第二期+图像处理篇(1).pdf【eoeAndroid特刊】第三期+Android+Market及应用发布.pdf【eoeAndroid特刊】第四期+Andr.........
▪ 从assets文件夹中读取txt资料 从assets文件夹中读取txt文件
Android除了提供/res目录存放资源文件外,在/assets目录也可以存放资源文件,而且/assets目录下的资源文件不会在R.java自动生成ID,所以读取/assets目录下的文件必须指.........
▪ MapView Marker shadow坐标有关问题 MapView Marker shadow坐标问题
Drawable drawable = app1.getResources().getDrawable(R.drawable.test); drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); OverlayItem overlayitem2 = new OverlayItem(mark, "Test", ".........
[1]eoe特刊(1-20期)网盘上载
来源: 互联网 发布时间: 2014-02-18
eoe特刊(1-20期)网盘下载
【eoeAndroid特刊】第一期+Andriod+1.5+SDK简介.pdf
【eoeAndroid特刊】第二期+图像处理篇(1).pdf
【eoeAndroid特刊】第三期+Android+Market及应用发布.pdf
【eoeAndroid特刊】第四期+Android+widget+Ver+2.0.0(build+2009.06.30).pdf
【eoeAndroid特刊】第五期+Android+widget.pdf
【eoeAndroid特刊】第六期+数据通信-成为Android数据流大师.pdf
【eoeAndroid特刊】第七期+NDK.pdf
【eoeAndroid特刊】第八期++开发技巧.pdf
【eoeAndroid特刊】第八期+数据存储操作.pdf
【eoeAndroid特刊】第九期--2009-11-30.pdf
【eoeAndroid特刊】第十期.pdf
【eoeAndroid特刊】第十一期.pdf
【eoeAndroid特刊】第十二期.pdf
【eoeAndroid特刊】第十三期.pdf
【eoeAndroid特刊】第十四期:Android2.3特色讲解.pdf
【eoeAndroid特刊】第十五期:Android多媒体.rar
【eoeAndroid特刊】第十六期:底层驱动原理.pdf
【eoe+Android特刊】第十七期:Android摄像头的应用.pdf
【eoe+Android特刊】第十八期:Android音视频的编解码.pdf
【eoe+Android特刊】第十九期:Android自定义控件.pdf
【eoe+Android特刊】第二十期:Android内存管理.pdf
【eoeAndroid特刊】第一期+Andriod+1.5+SDK简介.pdf
【eoeAndroid特刊】第二期+图像处理篇(1).pdf
【eoeAndroid特刊】第三期+Android+Market及应用发布.pdf
【eoeAndroid特刊】第四期+Android+widget+Ver+2.0.0(build+2009.06.30).pdf
【eoeAndroid特刊】第五期+Android+widget.pdf
【eoeAndroid特刊】第六期+数据通信-成为Android数据流大师.pdf
【eoeAndroid特刊】第七期+NDK.pdf
【eoeAndroid特刊】第八期++开发技巧.pdf
【eoeAndroid特刊】第八期+数据存储操作.pdf
【eoeAndroid特刊】第九期--2009-11-30.pdf
【eoeAndroid特刊】第十期.pdf
【eoeAndroid特刊】第十一期.pdf
【eoeAndroid特刊】第十二期.pdf
【eoeAndroid特刊】第十三期.pdf
【eoeAndroid特刊】第十四期:Android2.3特色讲解.pdf
【eoeAndroid特刊】第十五期:Android多媒体.rar
【eoeAndroid特刊】第十六期:底层驱动原理.pdf
【eoe+Android特刊】第十七期:Android摄像头的应用.pdf
【eoe+Android特刊】第十八期:Android音视频的编解码.pdf
【eoe+Android特刊】第十九期:Android自定义控件.pdf
【eoe+Android特刊】第二十期:Android内存管理.pdf
1 楼
zhaoyifei
2011-01-17
太好了,多谢。
[2] 从assets文件夹中读取txt资料
来源: 互联网 发布时间: 2014-02-18
从assets文件夹中读取txt文件
Android除了提供/res目录存放资源文件外,在/assets目录也可以存放资源文件,而且/assets目录下的资源文件不会在R.java自动生成ID,所以读取/assets目录下的文件必须指定文件的路径。我们可以通过AssetManager类来访问这些文件。
比如我要读取/assets/a.txt
AssetManager am = getAssets(); InputStream file = am.open("introduction.txt"); BufferedReader br = new BufferedReader(new InputStreamReader(file)); String row; while((row = br.readLine())!= null) { txtView.setText(row); }
[3] MapView Marker shadow坐标有关问题
来源: 互联网 发布时间: 2014-02-18
MapView Marker shadow坐标问题
Drawable drawable = app1.getResources().getDrawable(R.drawable.test);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
OverlayItem overlayitem2 = new OverlayItem(mark, "Test", "t");
overlayitem2.setMarker(drawable);
app1.mapOverlay.addOverlay(overlayitem2);
app1.mapOverlays.add(app1.mapOverlay);
如果你想使用阴影 一定要注意坐标 将drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
改为:
int w = drawable.getIntrinsicWidth();
int h = drawable.getIntrinsicHeight();
drawable.setBounds(-w / 2, -h, w / 2, 0);
最新技术文章: