Page 510 - 3-3
P. 510

else {
                                        setWebServer(addrWeb);
                                        setAppServer(addrApp);
                                    }
                                }
                            })
                            .setNegativeButton(" 취소", new DialogInterface.OnClickListener(){
                                //  취소 버튼 클릭 시 동작 설정
                                public void onClick(DialogInterface dialog, int whichButton){
                                    dialog.cancel();
                                }
                            });
                    mBuilder.create().show();
                }


                // Application  서버 주소 설정 함수
                private void setAppServer(String addr) {
                    SharedPreferences.Editor editor = mSetting.edit();
                    editor.putString(mContext.getString(R.string.APP_SERVER), addr);
                    editor.commit();
                }


                // Web  서버 주소 설정 함수
                private void setWebServer(String addr) {
                    SharedPreferences.Editor editor = mSetting.edit();
                    editor.putString(mContext.getString(R.string.WEB_SERVER), addr);
                    editor.commit();
                }
            }


             로그인 시 웹 주소와 와이파이 등을 제대로 입력했는지 확인하고 화면을 전환시키는 소스이다.
            이후 아래부터는 xml       파일을 설명한다.


                아. activity_elevator


            <?xml version="1.0" encoding="utf-8"?>
            <android.support.constraint.ConstraintLayout
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context="com.example.jbtc_01_06.outside.Elevator.ElevatorActivity"
                android:orientation="vertical">




                                                        - 510 -
   505   506   507   508   509   510   511   512   513   514   515