Android中的webservice调用方式与java中差异较大,经过查找些资料和例子,自己这边儿就做了个总结,写了个例子,谈不上原创(惭愧ing...),不过这方面的例子确实都大体相似,因为大家能写成博文的,发布成例子的,调用的接口大抵是网上公开的接口,如天气啊,手机号码段啊之类的,公司内部的接口,肯定是不能外透的,但是调用的方式确实一样,所以记录下来,方便大家研究,或者自己今后用到。
老习惯,先上效果图:
图一
图二
再上项目结构图:
第一步,加入调用webservice的jar包,ksoap2-android-assembly-2.5.4-jar-with-dependencies.jar,下面会提供附件下载。
第二步,编辑activity_main.xml布局出效果图一所示效果,代码如下:
- xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:paddingTop="5dip"
- android:paddingLeft="5dip"
- android:paddingRight="5dip"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="手机号码(段):"
- />
- <EditText android:id="@+id/phone_sec"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:inputType="textPhonetic"
- android:singleLine="true"
- android:hint="例如:1398547"
- />
- <Button android:id="@+id/query_btn"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:text="查询"
- />
- <TextView android:id="@+id/result_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal|center_vertical"
- />
- LinearLayout>