일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jobdispatcher
- alarmanager
- PHP
- livedatam
- shceduler
- epmty
- firebase
- 빈
- Service
- Library
- Android
- Background
- Job
- 검사
- jobschduler
- workmanager
- schedule
- Today
- Total
에몽이
단일 PC서버에 다수의 Android Device가 접속하여 채팅하는 프로젝트입니다최대 접속가능한 Android Device의 갯수는 확인되지않았지만개인적으로 3대의 Android Device도 가능함을 확인했습니다.각각 접속되어있는 Device들은 Mac주소를이용하여 구분이되도록했고접속자수와 퇴장시메세지등등 아직 구현되지않은 기능들은 차후 열심히공부해서변경후 업데이트하겠습니다.Mac주소를 받아오기위해서는 wifimanager클래스가필요한데그부분에대해서는 따로 작성하겠습니다.저도 독학중이기도하고 부족함이많아서 감안하시고 입맛에맞게참고만해주시기바랍니다. Server.java123456789101112131415161718192021222324252627282930313233343536373839404142..
Basically your Activity is using Toolbar (which replaces Action Bar) so you need to use style for the Activity that has no Action Bar like Theme.AppCompat.Light.NoActionBar. If you have your own style for dialog then you need to inherit the proper AppCompat theme.AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.myDialog));shareedit 출처:http://stackoverfl..