当前位置:   article > 正文

安卓开发(10)——智能家居APP设计_基于安卓系统的智能家居设计

基于安卓系统的智能家居设计

智能家居APP设计

一、设计思路

  • 第一个为欢迎页面
    • 主要实现功能是页面右上角3秒倒计时,完成后自动跳转到第二个页面。在主函数中创建用于计时的线程,每过一秒通过handler机制给主线程发送消息,主线程中通过handler机制更改右上角的计时显示,3秒结束后跳转到第二个页面。
  • 源码
    package com.example.jiangyo.learn;
    
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.os.Handler;
    import android.os.Message;
    import android.widget.TextView;
    
    public class WelcomActivity extends Activity {
    
    	Handler handler;
    	TextView tx;
    	
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_welcom);
    		
    		tx = (TextView) findViewById(R.id.tx);
    		handler = new Handler(){
    			@Override
    			public void handleMessage(Message msg) {
    				// TODO Auto-generated method stub
    				super.handleMessage(msg);
    				
    				tx.setText(msg.what+"s");
    			}
    		};
    		
    		new Thread(new Runnable() {
    			public void run() {
    				int i;
    				for(i=3;i>=0;i--) {
    					Message msg = new Message();
    					msg.what = i;
    					handler.sendMessage(msg);
    					try {
    						Thread.sleep(1000);
    					} catch (InterruptedException e) {
    						// TODO Auto-generated catch block
    						e.printStackTrace();
    					}
    				}
    				Intent intent = new Intent(WelcomActivity.this, MainActivity.class);
    				startActivity(intent);
    			}
    		}).start();
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    	android:background="@drawable/welcome"
        tools:context=".WelcomActivity" >
    
        <TextView
            android:id="@+id/tx"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="3s" 
            android:textSize="20sp"
            android:background="#000000"
            android:layout_alignParentRight="true"
            android:layout_marginTop="25dp"
            android:textColor="#ffffff"
            />
    
    </RelativeLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
  • 第二个页面为数据处理并显示监控的画面。主线程中创建了4个线程,分别是:创建socket客户端连接服务端线程、创建客户端接收数据线程、创建更改温湿度线程、创建更改webview的线程。 其中更改温湿度和更改webview是用于处理Handler机制的线程,主要作用是接收服务器发送的温湿度、按键的开关监控数据,把这些数据通过Handler机制线程可更改页面的显示。除外还有按键响应处理函数,卧室灯、二楼灯、餐厅灯、浴室灯、开监控、关监控 6个按键分别被按下后,会创建线程给服务端发送数据。
  • 源码
    package com.example.jiangyo.learn;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.Socket;
    import java.net.UnknownHostException;
    
    import android.annotation.SuppressLint;
    import android.app.Activity;
    import android.os.Bundle;
    import android.os.Handler;
    import android.os.Message;
    import android.view.View;
    import android.webkit.WebView;
    import android.webkit.WebViewClient;
    import android.widget.TextView;
    
    @SuppressLint("HandlerLeak")
    public class MainActivity extends Activity {
    	Handler handler;
    	Handler handler2;
    	TextView tx;
    	TextView tx2;
    	Socket client_c;
    	
    	WebView wb;
    	String mes = "massege frome Android";
    
    	public void Socket_Client(final int num)
    	{
    		new Thread(new Runnable() {
    			
    			public void run() {
    				// TODO Auto-generated method stub
    				try {
    					OutputStream out = client_c.getOutputStream();
    					
    					switch(num)
    					{
    						case 1:
    							mes = "livingroomLight";
    							break;
    						case 2:
    							mes = "upstairLight";
    							break;
    						case 3:
    							mes = "restaurantLight";
    							break;
    						case 4:
    							mes = "bathroomLight";
    							break;
    						case 5:
    							mes = "opencamera";
    							new Thread( new Runnable() {
    								
    								public void run() {
    									// TODO Auto-generated method stub
    									Message msg = new Message();
    									Bundle b = new Bundle();
    									b.putString("msg", mes);
    									msg.setData(b);
    									
    									handler2.sendMessage(msg);
    								}
    							}).start();
    							
    							break;
    						case 6:
    							mes = "closecamera";
    							new Thread( new Runnable() {
    								
    								public void run() {
    									// TODO Auto-generated method stub
    									Message msg = new Message();
    									Bundle b = new Bundle();
    									b.putString("msg", mes);
    									msg.setData(b);
    									
    									handler2.sendMessage(msg);
    								}
    							}).start();
    
    							break;
    						default :
    							break;
    					}
    					out.write(mes.getBytes());//发送通道发送数据
    				} catch (UnknownHostException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				} catch (IOException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				}
    			}
    		}).start();
    	}
    	
    	//key时间处理函数
    	@SuppressLint("ShowToast")
    	public void ButtonBeClicked(View v)
    	{
    		switch(v.getId())
    		{
    			case R.id.button1:
    				Socket_Client(1);
    				break;
    			case R.id.button2:
    				Socket_Client(2);
    				break;
    			case R.id.button3:
    				Socket_Client(3);
    				break;
    			case R.id.button4:
    				Socket_Client(4);
    				break;
    			case R.id.button5:
    				Socket_Client(5);
    				break;
    			case R.id.button6:
    				Socket_Client(6);
    				break;
    			default :
    				break;
    		}
    	}
    
    	
    	
    	
    	
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
    
            tx = (TextView) findViewById(R.id.tx1);
            tx2 = (TextView) findViewById(R.id.tx2);
            
            
            //创建socket客户端连接服务端
            new Thread(new Runnable() {
    			public void run() {
    				// TODO Auto-generated method stub
    				try {
    					//连接服务端
    					client_c = new Socket("192.168.101.76", 8080);
    				} catch (UnknownHostException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				} catch (IOException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				}
    			}
    		}).start();
            
            //创建接收数据线程
            new Thread(new Runnable() {
    			public void run() {
    				// TODO Auto-generated method stub
    				try {
    					Thread.sleep(1000);
    					OutputStream out = client_c.getOutputStream();
    					String mes = "massege frome Android";
    					out.write(mes.getBytes());//发送通道发送数据
    					
    					while(true) {
    						int len;
    						InputStream in = client_c.getInputStream();
    						byte[] data = new byte[128];
    						
    						len = in.read(data);
    						String str = new String(data,0,len);
    						Message msg = new Message();
    						
    						Bundle b = new Bundle();
    						b.putString("msg", str);
    						msg.setData(b);
    						
    						handler.sendMessage(msg);
    					}
    
    				} catch (UnknownHostException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				} catch (IOException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				} catch (InterruptedException e) {
    					// TODO Auto-generated catch block
    					e.printStackTrace();
    				}
    			}
    		}).start();
    
            
            //创建更改温湿度线程
    		handler = new Handler(){
    			@Override
    			public void handleMessage(Message msg) {
    				// TODO Auto-generated method stub
    				super.handleMessage(msg);
    				
    				Bundle b = msg.getData();
    				String string  = b.getString("msg");
    				String str2 = string.substring(1,3);
    				String str1 = string.substring(0, 1);
    				if(str1.equals("T")) {
    					tx.setText(str2+"℃");
    				}
    				else {
    					tx2.setText(str2+"%");
    				}
    			}
    		};
    		
    		//创建更改webview的线程
    		handler2 = new Handler(){
    			@Override
    			public void handleMessage(Message msg) {
    				// TODO Auto-generated method stub
    				super.handleMessage(msg);
    				
    				Bundle b = msg.getData();
    				String string  = b.getString("msg");
    				if(string.equals("opencamera")) {
    					wb = (WebView) findViewById(R.id.webView1);
    			        wb.loadUrl("http://192.168.101.76:8081/");
    			        wb.setWebViewClient(new WebViewClient());
    				}
    				else {
    					wb = (WebView) findViewById(R.id.webView1);
    			        wb.loadUrl("http://www.linuxcool.com/");
    			        wb.setWebViewClient(new WebViewClient());
    				}
    			}
    		};
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    	android:background="@drawable/bg"
        tools:context=".MainActivity" >
    
        <LinearLayout 
            android:id="@+id/LinearLayout1"
            android:layout_width="match_parent"
            android:layout_height="250dp"
            android:orientation="horizontal"
            android:layout_marginTop="80dp"
            >
            
            <WebView
    	        android:id="@+id/webView1"
    	        android:layout_width="match_parent"
    	        android:layout_height="250dp"
            />
            
        </LinearLayout>
        
        <LinearLayout 
            android:id="@+id/LinearLayout2"
            android:layout_below="@id/LinearLayout1"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:gravity="center_horizontal"
            >
            
            <LinearLayout 
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="200dp"
                android:orientation="vertical"
                >
                <TextView 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="温度:"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
                
                 <TextView 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="湿度:"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
                 
                  <TextView 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="火警:"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
                
            </LinearLayout>
            
            <LinearLayout 
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="200dp"
                android:orientation="vertical"
                >
                
                 <TextView 
                    android:id="@+id/tx1"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="26℃"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
                
                 <TextView 
                    android:id="@+id/tx2"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="78%"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
                 
                  <TextView 
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="监视"
                    android:textSize="15sp"
                    android:textColor="#ffffff"
                    android:layout_weight="1"
                    android:layout_gravity="center_horizontal"
                    />
            </LinearLayout>
            
        </LinearLayout>
        
        
        <LinearLayout 
            android:id="@+id/LinearLayout3"
            android:layout_below="@id/LinearLayout2"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:orientation="horizontal"
            android:gravity="center_horizontal"
            >
            
    			<Button 
    			    android:id="@+id/button1"
    			    android:layout_weight="1"
    			    android:layout_width="0dp"
    			    android:layout_height="wrap_content"
    			    android:text="卧室灯"
    			    android:background="@drawable/btn_selector"
    			    android:onClick="ButtonBeClicked"
    			    />
    			<Button 
    			    android:id="@+id/button2"
    			    android:layout_weight="1"
    			    android:layout_width="0dp"
    			    android:layout_height="wrap_content"
    			    android:text="二楼灯"
    			    android:background="@drawable/btn_selector"
    			    android:onClick="ButtonBeClicked"
    			    />
    			<Button 
    			    android:id="@+id/button3"
    			    android:layout_weight="1"
    			    android:layout_width="0dp"
    			    android:layout_height="wrap_content"
    			    android:text="餐厅灯"
    			    android:background="@drawable/btn_selector"
    			    android:onClick="ButtonBeClicked"
    			    />
    			<Button 
    			  android:id="@+id/button4"  
    			  android:layout_weight="1"
    			  android:layout_width="0dp"
    			  android:layout_height="wrap_content"
    			  android:text="浴室灯"
    			  android:background="@drawable/btn_selector"
    			  android:onClick="ButtonBeClicked"
    			  />
        </LinearLayout>
        
        <LinearLayout 
            android:layout_below="@id/LinearLayout3"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:orientation="horizontal"
            android:gravity="center_horizontal"
            >
            
    			<Button 
    			    android:id="@+id/button5"
    			    android:layout_weight="1"
    			    android:layout_width="0dp"
    			    android:layout_height="wrap_content"
    			    android:text="开监控"
    			    android:background="@drawable/btn_selector"
    			    android:onClick="ButtonBeClicked"
    			    />
    			<Button 
    			    android:id="@+id/button6"
    			    android:layout_weight="1"
    			    android:layout_width="0dp"
    			    android:layout_height="wrap_content"
    			    android:text="关监控"
    			    android:background="@drawable/btn_selector"
    			    android:onClick="ButtonBeClicked"
    			    />
        </LinearLayout>
    
    </RelativeLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/787995
推荐阅读
相关标签
  

闽ICP备14008679号