└── Landlords ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE ├── assets ├── bkg_btn_normal.png ├── bkg_btn_pressed.png ├── bkg_table.png ├── boom.wav ├── buyao.wav ├── c10.png ├── c10s.png ├── c11.png ├── c11s.png ├── c12.png ├── c12s.png ├── c13.png ├── c13s.png ├── c14.png ├── c14s.png ├── c15.png ├── c15s.png ├── c3.png ├── c3s.png ├── c4.png ├── c4s.png ├── c5.png ├── c5s.png ├── c6.png ├── c6s.png ├── c7.png ├── c7s.png ├── c8.png ├── c8s.png ├── c9.png ├── c9s.png ├── cardbg.png ├── d10.png ├── d10s.png ├── d11.png ├── d11s.png ├── d12.png ├── d12s.png ├── d13.png ├── d13s.png ├── d14.png ├── d14s.png ├── d15.png ├── d15s.png ├── d3.png ├── d3s.png ├── d4.png ├── d4s.png ├── d5.png ├── d5s.png ├── d6.png ├── d6s.png ├── d7.png ├── d7s.png ├── d8.png ├── d8s.png ├── d9.png ├── d9s.png ├── dani1.wav ├── dani2.wav ├── dani3.wav ├── dawang.wav ├── feiji.wav ├── givecard.wav ├── h10.png ├── h10s.png ├── h11.png ├── h11s.png ├── h12.png ├── h12s.png ├── h13.png ├── h13s.png ├── h14.png ├── h14s.png ├── h15.png ├── h15s.png ├── h3.png ├── h3s.png ├── h4.png ├── h4s.png ├── h5.png ├── h5s.png ├── h6.png ├── h6s.png ├── h7.png ├── h7s.png ├── h8.png ├── h8s.png ├── h9.png ├── h9s.png ├── icLandlord.png ├── j1.png ├── j2.png ├── landlord_p1.mp3 ├── landlord_p1.png ├── landlord_p2.mp3 ├── landlord_p2.png ├── landlord_p3.mp3 ├── landlord_p3.png ├── landlord_pass.mp3 ├── landlord_pass.png ├── liandui.wav ├── lose.mp3 ├── music_off.png ├── music_on.png ├── noBiggerCards.png ├── numbers.png ├── pass.wav ├── plane.wav ├── play_ahand.png ├── play_pass.png ├── play_rechoose.png ├── play_tip.png ├── playerHuman.png ├── playerLeft.png ├── playerRight.png ├── rechoose.mp3 ├── s10.png ├── s10s.png ├── s11.png ├── s11s.png ├── s12.png ├── s12s.png ├── s13.png ├── s13s.png ├── s14.png ├── s14s.png ├── s15.png ├── s15s.png ├── s3.png ├── s3s.png ├── s4.png ├── s4s.png ├── s5.png ├── s5s.png ├── s6.png ├── s6s.png ├── s7.png ├── s7s.png ├── s8.png ├── s8s.png ├── s9.png ├── s9s.png ├── sandaiyi.wav ├── sandaiyidui.wav ├── shunzi.wav ├── sidaier.wav ├── sidailiangdui.wav ├── sound_off.png ├── sound_on.png ├── start.wav ├── wangzha.wav ├── win.mp3 ├── wrongCards.png ├── xiaowang.wav ├── yaobuqi.wav └── zhadan.wav ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-xhdpi │ ├── bkg_btn_normal.png │ ├── bkg_table.png │ └── ic_launcher.png ├── layout │ ├── activity_loading.xml │ └── activity_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── mym ├── landlords ├── ai │ ├── AI.java │ ├── Game.java │ ├── Player.java │ ├── PlayerCardsInfo.java │ ├── StraightAnalyst.java │ ├── StraightNumbers.java │ └── TipRobot.java ├── card │ ├── Airplane.java │ ├── Bomb.java │ ├── BombType.java │ ├── Card.java │ ├── CardFactory.java │ ├── CardSuit.java │ ├── CardType.java │ ├── DoubleStraight.java │ ├── HandCard.java │ ├── NonBombType.java │ ├── Pair.java │ ├── Rocket.java │ ├── Single.java │ ├── Straight.java │ └── Three.java ├── res │ ├── Assets.java │ ├── GameGraphics.java │ ├── GlobalSoundPool.java │ └── LiveBitmap.java ├── test │ └── SpecifiedHandCardGen.java ├── ui │ ├── LoadingActivity.java │ ├── MainActivity.java │ └── Settings.java └── widget │ ├── BitmapButton.java │ ├── BitmapView.java │ ├── GameScreen.java │ ├── GameView.java │ ├── MappedTouchEvent.java │ └── RedrawableView.java └── util ├── BitmapUtil.java ├── LangUtils.java └── PollingThread.java /Landlords/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | 28 | # Eclipse files 29 | *.prefs 30 | *.classpath -------------------------------------------------------------------------------- /Landlords/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Landlords 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Landlords/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 20 | 21 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /Landlords/assets/bkg_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/bkg_btn_normal.png -------------------------------------------------------------------------------- /Landlords/assets/bkg_btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/bkg_btn_pressed.png -------------------------------------------------------------------------------- /Landlords/assets/bkg_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/bkg_table.png -------------------------------------------------------------------------------- /Landlords/assets/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/boom.wav -------------------------------------------------------------------------------- /Landlords/assets/buyao.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/buyao.wav -------------------------------------------------------------------------------- /Landlords/assets/c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c10.png -------------------------------------------------------------------------------- /Landlords/assets/c10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c10s.png -------------------------------------------------------------------------------- /Landlords/assets/c11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c11.png -------------------------------------------------------------------------------- /Landlords/assets/c11s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c11s.png -------------------------------------------------------------------------------- /Landlords/assets/c12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c12.png -------------------------------------------------------------------------------- /Landlords/assets/c12s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c12s.png -------------------------------------------------------------------------------- /Landlords/assets/c13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c13.png -------------------------------------------------------------------------------- /Landlords/assets/c13s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c13s.png -------------------------------------------------------------------------------- /Landlords/assets/c14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c14.png -------------------------------------------------------------------------------- /Landlords/assets/c14s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c14s.png -------------------------------------------------------------------------------- /Landlords/assets/c15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c15.png -------------------------------------------------------------------------------- /Landlords/assets/c15s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c15s.png -------------------------------------------------------------------------------- /Landlords/assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c3.png -------------------------------------------------------------------------------- /Landlords/assets/c3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c3s.png -------------------------------------------------------------------------------- /Landlords/assets/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c4.png -------------------------------------------------------------------------------- /Landlords/assets/c4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c4s.png -------------------------------------------------------------------------------- /Landlords/assets/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c5.png -------------------------------------------------------------------------------- /Landlords/assets/c5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c5s.png -------------------------------------------------------------------------------- /Landlords/assets/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c6.png -------------------------------------------------------------------------------- /Landlords/assets/c6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c6s.png -------------------------------------------------------------------------------- /Landlords/assets/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c7.png -------------------------------------------------------------------------------- /Landlords/assets/c7s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c7s.png -------------------------------------------------------------------------------- /Landlords/assets/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c8.png -------------------------------------------------------------------------------- /Landlords/assets/c8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c8s.png -------------------------------------------------------------------------------- /Landlords/assets/c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c9.png -------------------------------------------------------------------------------- /Landlords/assets/c9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/c9s.png -------------------------------------------------------------------------------- /Landlords/assets/cardbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/cardbg.png -------------------------------------------------------------------------------- /Landlords/assets/d10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d10.png -------------------------------------------------------------------------------- /Landlords/assets/d10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d10s.png -------------------------------------------------------------------------------- /Landlords/assets/d11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d11.png -------------------------------------------------------------------------------- /Landlords/assets/d11s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d11s.png -------------------------------------------------------------------------------- /Landlords/assets/d12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d12.png -------------------------------------------------------------------------------- /Landlords/assets/d12s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d12s.png -------------------------------------------------------------------------------- /Landlords/assets/d13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d13.png -------------------------------------------------------------------------------- /Landlords/assets/d13s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d13s.png -------------------------------------------------------------------------------- /Landlords/assets/d14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d14.png -------------------------------------------------------------------------------- /Landlords/assets/d14s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d14s.png -------------------------------------------------------------------------------- /Landlords/assets/d15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d15.png -------------------------------------------------------------------------------- /Landlords/assets/d15s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d15s.png -------------------------------------------------------------------------------- /Landlords/assets/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d3.png -------------------------------------------------------------------------------- /Landlords/assets/d3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d3s.png -------------------------------------------------------------------------------- /Landlords/assets/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d4.png -------------------------------------------------------------------------------- /Landlords/assets/d4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d4s.png -------------------------------------------------------------------------------- /Landlords/assets/d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d5.png -------------------------------------------------------------------------------- /Landlords/assets/d5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d5s.png -------------------------------------------------------------------------------- /Landlords/assets/d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d6.png -------------------------------------------------------------------------------- /Landlords/assets/d6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d6s.png -------------------------------------------------------------------------------- /Landlords/assets/d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d7.png -------------------------------------------------------------------------------- /Landlords/assets/d7s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d7s.png -------------------------------------------------------------------------------- /Landlords/assets/d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d8.png -------------------------------------------------------------------------------- /Landlords/assets/d8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d8s.png -------------------------------------------------------------------------------- /Landlords/assets/d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d9.png -------------------------------------------------------------------------------- /Landlords/assets/d9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/d9s.png -------------------------------------------------------------------------------- /Landlords/assets/dani1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/dani1.wav -------------------------------------------------------------------------------- /Landlords/assets/dani2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/dani2.wav -------------------------------------------------------------------------------- /Landlords/assets/dani3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/dani3.wav -------------------------------------------------------------------------------- /Landlords/assets/dawang.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/dawang.wav -------------------------------------------------------------------------------- /Landlords/assets/feiji.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/feiji.wav -------------------------------------------------------------------------------- /Landlords/assets/givecard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/givecard.wav -------------------------------------------------------------------------------- /Landlords/assets/h10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h10.png -------------------------------------------------------------------------------- /Landlords/assets/h10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h10s.png -------------------------------------------------------------------------------- /Landlords/assets/h11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h11.png -------------------------------------------------------------------------------- /Landlords/assets/h11s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h11s.png -------------------------------------------------------------------------------- /Landlords/assets/h12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h12.png -------------------------------------------------------------------------------- /Landlords/assets/h12s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h12s.png -------------------------------------------------------------------------------- /Landlords/assets/h13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h13.png -------------------------------------------------------------------------------- /Landlords/assets/h13s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h13s.png -------------------------------------------------------------------------------- /Landlords/assets/h14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h14.png -------------------------------------------------------------------------------- /Landlords/assets/h14s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h14s.png -------------------------------------------------------------------------------- /Landlords/assets/h15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h15.png -------------------------------------------------------------------------------- /Landlords/assets/h15s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h15s.png -------------------------------------------------------------------------------- /Landlords/assets/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h3.png -------------------------------------------------------------------------------- /Landlords/assets/h3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h3s.png -------------------------------------------------------------------------------- /Landlords/assets/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h4.png -------------------------------------------------------------------------------- /Landlords/assets/h4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h4s.png -------------------------------------------------------------------------------- /Landlords/assets/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h5.png -------------------------------------------------------------------------------- /Landlords/assets/h5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h5s.png -------------------------------------------------------------------------------- /Landlords/assets/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h6.png -------------------------------------------------------------------------------- /Landlords/assets/h6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h6s.png -------------------------------------------------------------------------------- /Landlords/assets/h7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h7.png -------------------------------------------------------------------------------- /Landlords/assets/h7s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h7s.png -------------------------------------------------------------------------------- /Landlords/assets/h8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h8.png -------------------------------------------------------------------------------- /Landlords/assets/h8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h8s.png -------------------------------------------------------------------------------- /Landlords/assets/h9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h9.png -------------------------------------------------------------------------------- /Landlords/assets/h9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/h9s.png -------------------------------------------------------------------------------- /Landlords/assets/icLandlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/icLandlord.png -------------------------------------------------------------------------------- /Landlords/assets/j1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/j1.png -------------------------------------------------------------------------------- /Landlords/assets/j2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/j2.png -------------------------------------------------------------------------------- /Landlords/assets/landlord_p1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p1.mp3 -------------------------------------------------------------------------------- /Landlords/assets/landlord_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p1.png -------------------------------------------------------------------------------- /Landlords/assets/landlord_p2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p2.mp3 -------------------------------------------------------------------------------- /Landlords/assets/landlord_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p2.png -------------------------------------------------------------------------------- /Landlords/assets/landlord_p3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p3.mp3 -------------------------------------------------------------------------------- /Landlords/assets/landlord_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_p3.png -------------------------------------------------------------------------------- /Landlords/assets/landlord_pass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_pass.mp3 -------------------------------------------------------------------------------- /Landlords/assets/landlord_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/landlord_pass.png -------------------------------------------------------------------------------- /Landlords/assets/liandui.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/liandui.wav -------------------------------------------------------------------------------- /Landlords/assets/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/lose.mp3 -------------------------------------------------------------------------------- /Landlords/assets/music_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/music_off.png -------------------------------------------------------------------------------- /Landlords/assets/music_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/music_on.png -------------------------------------------------------------------------------- /Landlords/assets/noBiggerCards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/noBiggerCards.png -------------------------------------------------------------------------------- /Landlords/assets/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/numbers.png -------------------------------------------------------------------------------- /Landlords/assets/pass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/pass.wav -------------------------------------------------------------------------------- /Landlords/assets/plane.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/plane.wav -------------------------------------------------------------------------------- /Landlords/assets/play_ahand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/play_ahand.png -------------------------------------------------------------------------------- /Landlords/assets/play_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/play_pass.png -------------------------------------------------------------------------------- /Landlords/assets/play_rechoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/play_rechoose.png -------------------------------------------------------------------------------- /Landlords/assets/play_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/play_tip.png -------------------------------------------------------------------------------- /Landlords/assets/playerHuman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/playerHuman.png -------------------------------------------------------------------------------- /Landlords/assets/playerLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/playerLeft.png -------------------------------------------------------------------------------- /Landlords/assets/playerRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/playerRight.png -------------------------------------------------------------------------------- /Landlords/assets/rechoose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/rechoose.mp3 -------------------------------------------------------------------------------- /Landlords/assets/s10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s10.png -------------------------------------------------------------------------------- /Landlords/assets/s10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s10s.png -------------------------------------------------------------------------------- /Landlords/assets/s11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s11.png -------------------------------------------------------------------------------- /Landlords/assets/s11s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s11s.png -------------------------------------------------------------------------------- /Landlords/assets/s12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s12.png -------------------------------------------------------------------------------- /Landlords/assets/s12s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s12s.png -------------------------------------------------------------------------------- /Landlords/assets/s13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s13.png -------------------------------------------------------------------------------- /Landlords/assets/s13s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s13s.png -------------------------------------------------------------------------------- /Landlords/assets/s14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s14.png -------------------------------------------------------------------------------- /Landlords/assets/s14s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s14s.png -------------------------------------------------------------------------------- /Landlords/assets/s15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s15.png -------------------------------------------------------------------------------- /Landlords/assets/s15s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s15s.png -------------------------------------------------------------------------------- /Landlords/assets/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s3.png -------------------------------------------------------------------------------- /Landlords/assets/s3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s3s.png -------------------------------------------------------------------------------- /Landlords/assets/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s4.png -------------------------------------------------------------------------------- /Landlords/assets/s4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s4s.png -------------------------------------------------------------------------------- /Landlords/assets/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s5.png -------------------------------------------------------------------------------- /Landlords/assets/s5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s5s.png -------------------------------------------------------------------------------- /Landlords/assets/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s6.png -------------------------------------------------------------------------------- /Landlords/assets/s6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s6s.png -------------------------------------------------------------------------------- /Landlords/assets/s7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s7.png -------------------------------------------------------------------------------- /Landlords/assets/s7s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s7s.png -------------------------------------------------------------------------------- /Landlords/assets/s8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s8.png -------------------------------------------------------------------------------- /Landlords/assets/s8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s8s.png -------------------------------------------------------------------------------- /Landlords/assets/s9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s9.png -------------------------------------------------------------------------------- /Landlords/assets/s9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/s9s.png -------------------------------------------------------------------------------- /Landlords/assets/sandaiyi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sandaiyi.wav -------------------------------------------------------------------------------- /Landlords/assets/sandaiyidui.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sandaiyidui.wav -------------------------------------------------------------------------------- /Landlords/assets/shunzi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/shunzi.wav -------------------------------------------------------------------------------- /Landlords/assets/sidaier.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sidaier.wav -------------------------------------------------------------------------------- /Landlords/assets/sidailiangdui.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sidailiangdui.wav -------------------------------------------------------------------------------- /Landlords/assets/sound_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sound_off.png -------------------------------------------------------------------------------- /Landlords/assets/sound_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/sound_on.png -------------------------------------------------------------------------------- /Landlords/assets/start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/start.wav -------------------------------------------------------------------------------- /Landlords/assets/wangzha.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/wangzha.wav -------------------------------------------------------------------------------- /Landlords/assets/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/win.mp3 -------------------------------------------------------------------------------- /Landlords/assets/wrongCards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/wrongCards.png -------------------------------------------------------------------------------- /Landlords/assets/xiaowang.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/xiaowang.wav -------------------------------------------------------------------------------- /Landlords/assets/yaobuqi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/yaobuqi.wav -------------------------------------------------------------------------------- /Landlords/assets/zhadan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/assets/zhadan.wav -------------------------------------------------------------------------------- /Landlords/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/ic_launcher-web.png -------------------------------------------------------------------------------- /Landlords/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Landlords/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Landlords/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Landlords/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-20 15 | -------------------------------------------------------------------------------- /Landlords/res/drawable-xhdpi/bkg_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/res/drawable-xhdpi/bkg_btn_normal.png -------------------------------------------------------------------------------- /Landlords/res/drawable-xhdpi/bkg_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/res/drawable-xhdpi/bkg_table.png -------------------------------------------------------------------------------- /Landlords/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muyangmin/Landlords/4bce1105431950ea90ebe52027d6c31bfd42b694/Landlords/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Landlords/res/layout/activity_loading.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 15 | 16 | 22 | 23 | 30 | 31 | 36 | 37 | 43 | 44 |