代码的介绍在上一个日志中
好多人问我要这个工程文件,受不了了,传上来了(地址在最后),不过连接时会有很多问题要自己去体会,这里教不了了(因为全是gtalk的设置问题)
首先注意一下布局文件的位置:
然后是包的位置:
接下来是代码(那个设置对话框的代码和布局懒得贴了,和上一个程序是一样的)
VideoSmackCarControllerActivity.java
package android.lynx.VideoSmackCarController;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.Locale;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.jivesoftware.smack.Chat;
import org.jivesoftware.smack.ChatManager;
import org.jivesoftware.smack.ChatManagerListener;
import org.jivesoftware.smack.Connection;
import org.jivesoftware.smack.MessageListener;
import org.jivesoftware.smack.Roster;
import org.jivesoftware.smack.RosterEntry;
import org.jivesoftware.smack.RosterGroup;
import org.jivesoftware.smack.RosterListener;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.packet.DefaultPacketExtension;
import org.jivesoftware.smack.packet.Message;
import org.jivesoftware.smack.packet.PacketExtension;
import org.jivesoftware.smack.packet.Presence;
import org.jivesoftware.smack.util.Base64;
import org.jivesoftware.smack.util.StringUtils;
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.os.Bundle;
import android.os.Handler;
import android.text.format.DateFormat;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.Toast;
public class VideoSmackCarControllerActivity extends Activity {
/** Called when the activity is first created. */
private static final String TAG = "VideoSmackCarController";
private static final boolean D = true; // Debug模式开启标识
private Chat newChat = null;
private Handler mHandler = new Handler();
public Connection connection;
private ChatManager chatmanager;
private SettingsDialog mDialog;
private EditText mRecipient;
private EditText mSendText;
private EditText mCycleTime;
private RadioGroup rg;
private RadioButton b0;
private RadioButton b1;
private RadioButton b2;
private RadioButton b3;
private ListView mList;
private ImageView mImageView;
public String serverName = "gamil.com";
private ArrayList<String> messages = new ArrayList<String>();
// 扩展数据定义
public static final String EElementName = "JpegExtension";
public static final String ENameSpace = "CarExtension";
public static final String EValueName = "AJpeg";
public static final String ETimeName = "CreateTime";
// 用于确定图片的先后时间防止图片数据包分时到达出现显示混乱
private long lastPhotoTime = 0;
// 用于存储控制命令的两个时间变量
private int moveContinueTime = 100;
private int eyeCycleTime = 1000;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_NO_TITLE); // 去掉标题栏
setContentView(R.layout.main);
initFindsAndListeners();
}
/**
* 统一的查找窗体和按钮监听事件,独立出来是为了作横屏转换的时候更方便
*/
private void initFindsAndListeners() {
mRecipient = (EditText) this.findViewById(R.id.recipient);
mSendText = (EditText) this.findViewById(R.id.sendText);
mList = (ListView) this.findViewById(R.id.listMessages);
mImageView = (ImageView) this.findViewById(R.id.imageView1);
// Dialog for getting the xmpp settings
mDialog = new SettingsDialog(this);
// Set a listener to show the settings dialog
Button setup = (Button) this.findViewById(R.id.setup);
setup.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
mHandler.post(new Runnable() {
@Override
public void run() {
mDialog.show();
}
});
}
});
Button send = (Button) this.findViewById(R.id.send);
send.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = mSendText.getText().toString();
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
while (messages.size() > 50) // 防止消息过多
{
messages.remove(messages.size() - 1);
}
messages.add(0, text);
messages.add(0, connection.getUser() + ":");
// 新建一个会话
if (newChat == null) {// "test@a-7a511a1a957b4"
String fName = mRecipient.getText().toString();
if (!fName.contains("@"))
fName = fName + "@" + serverName;
newChat = chatmanager.createChat(fName,
new MessageListener() {
public void processMessage(Chat chat,
Message message) {
System.out.println("Received from 【"
+ message.getFrom() + "】 message: "
+ message.getBody());
}
});
}
try {
newChat.sendMessage(msg);
} catch (XMPPException e) {
e.printStackTrace();
}
// Add the incoming message to the list view
mHandler.post(new Runnable() {
@Override
public void run() {
setListAdapter();
}
});
}
});
setListAdapter();
/*
* 这里开始是横屏各种按钮的初始化
*/
Button MoveLF = (Button) this.findViewById(R.id.buttonLF);
MoveLF.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 40 moveF 50 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveF = (Button) this.findViewById(R.id.buttonF);
MoveF.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 0 moveF 50 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveRF = (Button) this.findViewById(R.id.buttonRF);
MoveRF.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnR 40 moveF 50 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveL = (Button) this.findViewById(R.id.buttonL);
MoveL.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 100 moveF 40 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveM = (Button) this.findViewById(R.id.buttonM);
MoveM.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 0 moveF 0 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveR = (Button) this.findViewById(R.id.buttonR);
MoveR.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnR 100 moveF 40 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveLB = (Button) this.findViewById(R.id.buttonLB);
MoveLB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 100 moveB 40 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveB = (Button) this.findViewById(R.id.buttonB);
MoveB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnL 0 moveB 50 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button MoveRB = (Button) this.findViewById(R.id.buttonRB);
MoveRB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command action turnR 100 moveB 40 keep "
+ moveContinueTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
// Eye相关按钮与命令初始化
mCycleTime = (EditText) this.findViewById(R.id.editTextCycle);
Button EyeOn = (Button) this.findViewById(R.id.buttonEyeOn);
EyeOn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
int NumGet = 0;
try {
NumGet = Integer.parseInt(mCycleTime.getText().toString());
eyeCycleTime = NumGet;
} catch (NumberFormatException e) {
if (D)
Log.d(TAG, "+++ Input Must Be An Integer +++");
}
String to = mRecipient.getText().toString();
String text = "#command eye on every " + eyeCycleTime;
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button EyeOff = (Button) this.findViewById(R.id.buttonEyeOff);
EyeOff.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command eye off";
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
Button EyePhoto = (Button) this.findViewById(R.id.buttonPhoto);
EyePhoto.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = "#command eye photo";
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
sendMessage(msg);
}
});
// 单选按钮调用方法
rg = (RadioGroup) findViewById(R.id.radioGroup1);
b0 = (RadioButton) findViewById(R.id.radio0);
b1 = (RadioButton) findViewById(R.id.radio1);
b2 = (RadioButton) findViewById(R.id.radio2);
b3 = (RadioButton) findViewById(R.id.radio3);
rg.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if (checkedId == b0.getId()) {
moveContinueTime = 800;
} else if (checkedId == b1.getId()) {
moveContinueTime = 200;
} else if (checkedId == b2.getId()) {
moveContinueTime = 100;
} else if (checkedId == b3.getId()) {
moveContinueTime = 50;
}
}
});
}
/**
* 统一的消息发送方法
*
* @param msg
* 要发送的消息
*/
private void sendMessage(Message msg) {
while (messages.size() > 50) // 防止消息过多
{
messages.remove(messages.size() - 1);
}
messages.add(0, msg.getBody());
messages.add(0, connection.getUser() + ":");
// 新建一个会话
if (newChat == null) {// "test@a-7a511a1a957b4"
String fName = mRecipient.getText().toString();
if (!fName.contains("@"))
fName = fName + "@" + serverName;
newChat = chatmanager.createChat(fName, new MessageListener() {
public void processMessage(Chat chat, Message message) {
System.out.println("Received from 【" + message.getFrom()
+ "】 message: " + message.getBody());
}
});
}
try {
newChat.sendMessage(msg);
} catch (XMPPException e) {
e.printStackTrace();
}
// Add the incoming message to the list view
mHandler.post(new Runnable() {
@Override
public void run() {
setListAdapter();
}
});
}
/**
* Called by Settings dialog when a connection is establised with the XMPP
* server
*
* @param connection
*/
public void setConnection(Connection connection) {
this.connection = (Connection) connection;
if (connection != null) {
try {
// XMPPConnection.DEBUG_ENABLED = true;
// //我的电脑IP:10.16.25.90
// final ConnectionConfiguration connectionConfig = new
// ConnectionConfiguration("192.168.8.194", 5222,
// "a-7a511a1a957b4");
// connectionConfig.setSASLAuthenticationEnabled(false);
// connection = new XMPPConnection(connectionConfig);
// connection.connect();//连接
// connection.login("whb", "874553");//登陆
chatmanager = connection.getChatManager();
// 监听被动接收消息,或广播消息监听器
chatmanager.addChatListener(new ChatManagerListener() {
@Override
public void chatCreated(Chat chat, boolean createdLocally) {
chat.addMessageListener(new MessageListener() {
@Override
public void processMessage(Chat chat,
Message message) {
if (message.getBody() != null) {
MessageHook(message); // 用于检测控制命令的消息钩子
String fromName = StringUtils
.parseBareAddress(message.getFrom());
while (messages.size() > 50) // 防止消息过多
{
messages.remove(messages.size() - 1);
}
messages.add(0, message.getBody());
messages.add(0, fromName + ":");
// Add the incoming message to the list view
mHandler.post(new Runnable() {
@Override
public void run() {
setListAdapter();
}
});
}
}
});
}
});
// 发送消息
// newChat.sendMessage("我是菜鸟");
// 获取花名册
Roster roster = connection.getRoster();
Collection<RosterEntry> entries = roster.getEntries();
for (RosterEntry entry : entries) {
System.out.print(entry.getName() + " - " + entry.getUser()
+ " - " + entry.getType() + " - "
+ entry.getGroups().size());
Presence presence = roster.getPresence(entry.getUser());
System.out.println(" - " + presence.getStatus() + " - "
+ presence.getFrom());
}
// 添加花名册监听器,监听好友状态的改变。
roster.addRosterListener(new RosterListener() {
@Override
public void entriesAdded(Collection<String> addresses) {
System.out.println("entriesAdded");
}
@Override
public void entriesUpdated(Collection<String> addresses) {
System.out.println("entriesUpdated");
}
@Override
public void entriesDeleted(Collection<String> addresses) {
System.out.println("entriesDeleted");
}
@Override
public void presenceChanged(Presence presence) {
System.out.println("presenceChanged - >"
+ presence.getStatus());
}
});
// 创建组
// /RosterGroup group = roster.createGroup("大学");
// for(RosterEntry entry : entries) {
// group.addEntry(entry);
// }
for (RosterGroup g : roster.getGroups()) {
for (RosterEntry entry : g.getEntries()) {
System.out.println("Group " + g.getName() + " >> "
+ entry.getName() + " - " + entry.getUser()
+ " - " + entry.getType() + " - "
+ entry.getGroups().size());
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
private void setListAdapter() {
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.multi_line_list_item, messages);
mList.setAdapter(adapter);
}
@Override
protected void onDestroy() {
connection.disconnect();
System.exit(0);
super.onDestroy();
}
/**
* 直接调用setImageBitmap是无法正常显示的,经过查资料得知必须在一个独立的线程中才行
*
* @author Lynx
*
*/
private class setMapThread implements Runnable {
public Bitmap mBitmap = null;
public void setB(Bitmap mBitmap) {
this.mBitmap = mBitmap;
}
// run方法会在UI线程中执行
public void run() {
mImageView.setImageBitmap(mBitmap);
if (D)
Log.d(TAG, "+++ Jpeg Sitted +++");
}
}
/**
* 用于检测消息的钩子函数(这里用来检测并执行控制命令)
*
* @param messageIn
* 将要被检测的消息
*/
private void MessageHook(Message messageIn) {
if (D)
Log.d(TAG, "+++ ON HOOK +++");
DefaultPacketExtension ExtensionGot = (DefaultPacketExtension) messageIn
.getExtension(EElementName, ENameSpace);
if (ExtensionGot != null) {
String timeString = ExtensionGot.getValue(ETimeName);
long messageTime = 0;
try {
messageTime = Long.parseLong(timeString);
} catch (NumberFormatException e) {
if (D)
Log.d(TAG, "+++ Photo Time not Set +++");
messageTime = 0;
}
if (messageTime >= lastPhotoTime || messageTime == 0) // 只有新图片的时间大于旧图片时才显示(或者该功能没有被启动)
{
// 重置记录的时间
lastPhotoTime = messageTime;
String jpegString = ExtensionGot.getValue(EValueName);
byte[] JpegData = Base64.decode(jpegString);
if (D)
Log.d(TAG,
"+++ Jpeg Found +++" + jpegString.substring(0, 40));
// 用BitmapFactory.decodeByteArray()方法可以把相机传回的裸数据转换成Bitmap对象
Bitmap mBitmap = null;
mBitmap = BitmapFactory.decodeByteArray(JpegData, 0,
JpegData.length);
// 根据不同的类型来处理图片是否需要旋转和存储
String JpegMessageType = messageIn.getBody();
if (JpegMessageType.equals("ShotCut-JPEG")) {
Matrix matrix = new Matrix();
matrix.postRotate(90);
Bitmap nbmp = Bitmap.createBitmap(mBitmap, 0, 0,
mBitmap.getWidth(), mBitmap.getHeight(), matrix,
true);
mBitmap = nbmp;
} else {
File file = new File("/mnt/sdcard/Car"
+ new DateFormat().format("yyyyMMdd_hhmmss",
Calendar.getInstance(Locale.CHINA))
+ ".jpg");
try {
file.createNewFile();
BufferedOutputStream os = new BufferedOutputStream(
new FileOutputStream(file));
mBitmap.compress(Bitmap.CompressFormat.JPEG, 100, os);
os.flush();
os.close();
Toast.makeText(getApplicationContext(),
"图片保存完毕,在存储卡的根目录", Toast.LENGTH_LONG).show();
} catch (IOException e) {
e.printStackTrace();
}
}
setMapThread newThread = new setMapThread();
newThread.setB(mBitmap);
mImageView.post(newThread);
// 接下来的工作就是把Bitmap保存成一个存储卡中的文件
/*
* File file = new File("/mnt/sdcard/YY" + new
* DateFormat().format("yyyyMMdd_hhmmss",
* Calendar.getInstance(Locale.CHINA)) + ".jpg"); try {
* file.createNewFile(); BufferedOutputStream os = new
* BufferedOutputStream( new FileOutputStream(file));
* mBitmap.compress(Bitmap.CompressFormat.JPEG, 100, os);
* os.flush(); os.close();
* Toast.makeText(getApplicationContext(), "图片保存完毕,在存储卡的根目录",
* Toast.LENGTH_LONG).show(); } catch (IOException e) {
* e.printStackTrace();
*
* }
*/
}
}
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
setContentView(R.layout.main);
initFindsAndListeners();
} else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
setContentView(R.layout.main);
initFindsAndListeners();
}
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.lynx.VideoSmackCarController"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".VideoSmackCarControllerActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/setup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Setup" >
</Button>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="70dp"
android:text="Recipient:" />
<EditText
android:id="@+id/recipient"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoText="false"
android:capitalize="none"
android:minWidth="250dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="lynx84693469@gmail.com"
android:textSize="16sp" />
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="216dp"
android:src="@drawable/offimage" />
<ListView
android:id="@+id/listMessages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:scrollbars="horizontal" >
</ListView>
<EditText
android:id="@+id/sendText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoText="false"
android:capitalize="none"
android:scrollHorizontally="true"
android:singleLine="true"
android:textSize="16sp" />
<Button
android:id="@+id/send"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Send" >
</Button>
<LinearLayout
android:id="@+id/linearLayout3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:visibility="gone" >
<LinearLayout
android:id="@+id/linearLayout4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonLF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="LF" />
<Button
android:id="@+id/buttonF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Fo" />
<Button
android:id="@+id/buttonRF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="RF" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout5"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonL"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Le" />
<Button
android:id="@+id/buttonM"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Mid" />
<Button
android:id="@+id/buttonR"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Ri" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout6"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonLB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="LB" />
<Button
android:id="@+id/buttonB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Ba" />
<Button
android:id="@+id/buttonRB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="RB" />
</LinearLayout>
</LinearLayout>
<EditText
android:id="@+id/editTextCycle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1000"
android:visibility="gone" >
</EditText>
<Button
android:id="@+id/buttonEyeOn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ON/RESET"
android:visibility="gone" />
<Button
android:id="@+id/buttonEyeOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OFF"
android:visibility="gone" />
<Button
android:id="@+id/buttonPhoto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Shot"
android:visibility="gone" />
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="8s" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2s" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="1s" />
<RadioButton
android:id="@+id/radio3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=".5" />
</RadioGroup>
</LinearLayout>
横屏的main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/setup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Setup" />
<EditText
android:id="@+id/recipient"
android:layout_width="209dp"
android:layout_height="wrap_content"
android:autoText="false"
android:capitalize="none"
android:minWidth="250dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="lynx84693469@gmail.com"
android:textSize="16sp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Eye Cycle:" />
<EditText
android:id="@+id/editTextCycle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1000" >
</EditText>
<Button
android:id="@+id/buttonEyeOn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ON/RESET" />
<Button
android:id="@+id/buttonEyeOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OFF" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/buttonPhoto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Shot" />
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="8s" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2s" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="1s" />
<RadioButton
android:id="@+id/radio3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=".5" />
</RadioGroup>
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/offimage" />
<LinearLayout
android:id="@+id/linearLayout3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonLF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="LF" />
<Button
android:id="@+id/buttonF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Fo" />
<Button
android:id="@+id/buttonRF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="RF" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout5"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonL"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Le" />
<Button
android:id="@+id/buttonM"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Mid" />
<Button
android:id="@+id/buttonR"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Ri" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout6"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<Button
android:id="@+id/buttonLB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="LB" />
<Button
android:id="@+id/buttonB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Ba" />
<Button
android:id="@+id/buttonRB"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="RB" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<ListView
android:id="@+id/listMessages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:scrollbars="horizontal"
android:visibility="gone" >
</ListView>
<EditText
android:id="@+id/sendText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoText="false"
android:capitalize="none"
android:scrollHorizontally="true"
android:singleLine="true"
android:textSize="16sp"
android:visibility="gone" />
<Button
android:id="@+id/send"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Send"
android:visibility="gone" >
</Button>
</LinearLayout>