android socket 配置文件_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android socket 配置文件

android socket 配置文件

 2010/11/19 9:20:08  hezhou_0521  http://hezhou-0521.javaeye.com  我要评论(0)
  • 摘要:<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><TextViewandroid
  • 标签:android配置文件
socket client.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">
	<TextView android:id="@+id/TextView" android:singleLine="false"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content" />
	<EditText android:hint="content" android:id="@+id/EditText01"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
	</EditText>
	<Button android:text="login" android:id="@+id/Button01"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
	</Button>
	<Button android:text="send" android:id="@+id/Button02"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
	</Button>
</LinearLayout>

?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="com.a" android:versionCode="1" android:versionName="1.0">
	<application android:icon="@drawable/icon" android:label="clientSocketLabel">
		<!-- 
		<activity android:name=".CA" android:label="@string/app_name">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		 -->
		<activity android:name=".Test" android:label="clientSocket">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<!-- 
		<receiver android:name=".MyBroadcastReceiver">
			<intent-filter>
				<action android:name="com.a.action" />
			</intent-filter>
		</receiver>
		 -->
	</application>
	<uses-permission android:name="android.permission.INTERNET"></uses-permission>
	<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>


</manifest> 

?

  • 相关文章
发表评论
用户名: 匿名