爱上soso 发表于 2013-8-28 16:28

android访问Tomcat,实现数据的提交

2android客户端程序:main.xml&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;    android:layout_width=&quot;fill_parent&quot;    android:layout_height=&quot;fill_parent&quot;    android:orientation=&quot;vertical&quot; &gt;     &lt;LinearLayout      android:layout_width=&quot;match_parent&quot;      android:layout_height=&quot;wrap_content&quot; &gt;       &lt;ImageView            android:layout_width=&quot;30dp&quot;            android:layout_height=&quot;wrap_content&quot;            android:layout_marginLeft=&quot;85dp&quot;            android:background=&quot;@drawable/login&quot; /&gt;       &lt;TextView            android:layout_width=&quot;150dp&quot;            android:layout_height=&quot;wrap_content&quot;            android:layout_weight=&quot;1.28&quot;            android:text=&quot;用户登录&quot;            android:textSize=&quot;30dp&quot; /&gt;    &lt;/LinearLayout&gt;     &lt;LinearLayout      xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;      android:layout_width=&quot;fill_parent&quot;      android:layout_height=&quot;wrap_content&quot;      android:layout_marginLeft=&quot;20dp&quot;      android:layout_marginRight=&quot;20dp&quot;      android:orientation=&quot;horizontal&quot; &gt;       &lt;TextView            android:layout_width=&quot;wrap_content&quot;            android:layout_height=&quot;wrap_content&quot;            android:text=&quot;用户名:&quot;            android:textSize=&quot;20dp&quot; /&gt;       &lt;EditText            android:id=&quot;@+id/et_username&quot;            android:layout_width=&quot;fill_parent&quot;            android:layout_height=&quot;wrap_content&quot; /&gt;    &lt;/LinearLayout&gt;     &lt;LinearLayout      xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;      android:layout_width=&quot;fill_parent&quot;      android:layout_height=&quot;wrap_content&quot;      android:layout_marginLeft=&quot;20dp&quot;      android:layout_marginRight=&quot;20dp&quot;      android:orientation=&quot;horizontal&quot; &gt;       &lt;TextView                        android:layout_width=&quot;wrap_content&quot;            android:layout_height=&quot;wrap_content&quot;            android:text=&quot;密    码:&quot;            android:textSize=&quot;20dp&quot; /&gt;       &lt;EditText             android:id=&quot;@+id/et_pass&quot;            android:layout_width=&quot;fill_parent&quot;            android:layout_height=&quot;wrap_content&quot;            android:password=&quot;true&quot; /&gt;    &lt;/LinearLayout&gt;     &lt;RelativeLayout      android:layout_width=&quot;match_parent&quot;      android:layout_height=&quot;wrap_content&quot;      android:layout_weight=&quot;0.23&quot; &gt;       &lt;Button            android:id=&quot;@+id/btnexit&quot;            android:layout_width=&quot;wrap_content&quot;            android:layout_height=&quot;wrap_content&quot;            android:layout_alignParentRight=&quot;true&quot;            android:layout_alignParentTop=&quot;true&quot;            android:layout_marginRight=&quot;78dp&quot;            android:text=&quot;取消&quot; /&gt;       &lt;Button            android:id=&quot;@+id/btnlogin&quot;            android:layout_width=&quot;wrap_content&quot;            android:layout_height=&quot;wrap_content&quot;            android:layout_alignParentTop=&quot;true&quot;            android:layout_marginRight=&quot;40dp&quot;            android:layout_toLeftOf=&quot;@+id/btnexit&quot;            android:text=&quot;登录&quot; /&gt;     &lt;/RelativeLayout&gt; &lt;/LinearLayout&gt;</div
页: [1]
查看完整版本: android访问Tomcat,实现数据的提交