- 浏览: 19900 次
- 性别:
- 来自: 济南
最新评论
-
dicmo:
请问我怎么在后台拿到许多地址,然后全部显示出来
google map 加点 -
凋零的羽:
最近我也正好要开始类似的项目,初学ing。。。正好拿您的总结学 ...
根据分析数据在前台jsp页面显示不同颜色
文章列表
坐标布局
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
androi ...
- 2009-11-07 11:29
- 浏览 990
- 评论(0)
framelayout
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
...
- 2009-11-07 11:23
- 浏览 902
- 评论(0)
相对布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<AnalogClock
android:i ...
- 2009-11-07 10:55
- 浏览 914
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dongyang"
android:versionCode="1"
android:versionName="1.0">
<application andr ...
- 2009-11-07 10:24
- 浏览 1044
- 评论(0)
第一部分是页面的布局
layout目录中的xml文件如下
<?xml version="1.0" encoding="utf-8"?>
<!--
android:orientation="vertical" 垂直对齐
android:layout_width="fill_parent" 宽度为充满
android:layout_height="wrap_content" 高度为刚好适合子控件
EditText 添加的一 ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8& ...
最近在做一个基站项目,用到了google map ,下面是加基站的,其中基站经纬度在xml文件中,标注用到的图标是自己做的
<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="GBK"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1 ...
下面是实现xls格式文件到xml文件格式的转换,很方便,
package com.dongyang;
/*
* 读xls写xml
*/
import java.io.FileOutputStream;
import java.io.FileInputStream;
import java.io.InputStream;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.output.XMLOutputter;
import jxl.Cell;
import jxl ...
最近在做地图方面的东西,用到了google map ,特拿来跟大家一起分享!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" con ...