└── biye ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── open.png │ │ │ │ ├── close.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── add.png │ │ │ │ ├── one.png │ │ │ │ ├── open.png │ │ │ │ ├── two.png │ │ │ │ ├── close.png │ │ │ │ ├── fanhui.png │ │ │ │ ├── flower1.png │ │ │ │ ├── flower2.png │ │ │ │ ├── flower3.png │ │ │ │ ├── flower4.png │ │ │ │ ├── flower5.png │ │ │ │ ├── flower6.png │ │ │ │ ├── flower7.png │ │ │ │ ├── jiantou.png │ │ │ │ ├── three.png │ │ │ │ ├── xingfen.png │ │ │ │ ├── jiantou1.png │ │ │ │ ├── jiantou2.png │ │ │ │ └── jiantou3.png │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── arrays.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── drawable │ │ │ │ ├── ic_home_black_24dp.xml │ │ │ │ ├── ic_dashboard_black_24dp.xml │ │ │ │ ├── stayedit.xml │ │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ │ ├── yuan.xml │ │ │ │ ├── button_circle_shape.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── layout │ │ │ │ ├── fragment_home.xml │ │ │ │ ├── shouru_frament.xml │ │ │ │ ├── zhichu_frament.xml │ │ │ │ ├── contacts_item.xml │ │ │ │ ├── contact_title.xml │ │ │ │ ├── fragment_notifications.xml │ │ │ │ ├── fragment_dashboard.xml │ │ │ │ ├── item.xml │ │ │ │ ├── login.xml │ │ │ │ ├── activity_chatmsg.xml │ │ │ │ ├── activity_jizhang.xml │ │ │ │ └── activity_zhuye.xml │ │ │ ├── menu │ │ │ │ └── bottom_nav_menu.xml │ │ │ ├── navigation │ │ │ │ └── mobile_navigation.xml │ │ │ ├── xml │ │ │ │ └── root_preferences.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── biye │ │ │ │ ├── contacts.java │ │ │ │ ├── Msg.java │ │ │ │ ├── shouruFragment.java │ │ │ │ ├── ZhichuFragment.java │ │ │ │ ├── loginActivity.java │ │ │ │ ├── zhuyeActivity.java │ │ │ │ ├── ContactAapter.java │ │ │ │ ├── MsgAdapter.java │ │ │ │ ├── ChatmsgActivity.java │ │ │ │ └── ui │ │ │ │ ├── home │ │ │ │ └── HomeFragment.java │ │ │ │ ├── notifications │ │ │ │ └── NotificationsFragment.java │ │ │ │ └── dashboard │ │ │ │ └── DashboardFragment.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── biye │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── biye │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── android └── widget │ └── annotations.xml ├── .gitignore ├── .idea ├── misc.xml ├── runConfigurations.xml ├── gradle.xml └── codeStyles │ └── Project.xml ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew /biye/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biye/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='biye' 3 | -------------------------------------------------------------------------------- /biye/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xhdpi/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xhdpi/open.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/one.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/open.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/two.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xhdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xhdpi/close.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/close.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/fanhui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/fanhui.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower1.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower2.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower3.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower4.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower5.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower6.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/flower7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/flower7.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/jiantou.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/three.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/xingfen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/xingfen.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/jiantou1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/jiantou1.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/jiantou2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/jiantou2.png -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable-xhdpi/jiantou3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/drawable-xhdpi/jiantou3.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /biye/android/widget/annotations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiushidaxinya/xinjiujiu/HEAD/biye/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biye/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /biye/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Jan 11 09:37:46 CST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /biye/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F38584 4 | #FC4B49 5 | #D81B60 6 | #000000 7 | 8 | 9 | -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /biye/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /biye/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Reply 5 | Reply to all 6 | 7 | 8 | 9 | reply 10 | reply_all 11 | 12 | -------------------------------------------------------------------------------- /biye/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /biye/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 16dp 7 | 8dp 8 | 9 | -------------------------------------------------------------------------------- /biye/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /biye/app/src/main/java/com/example/biye/contacts.java: -------------------------------------------------------------------------------- 1 | package com.example.biye; 2 | 3 | public class contacts { 4 | 5 | private String names; 6 | private int imageId; 7 | 8 | public contacts(String names,int imageId) 9 | { 10 | this.names = names; 11 | this.imageId = imageId; 12 | } 13 | 14 | public String getNames(){ 15 | return names; 16 | } 17 | public int getImageId(){ 18 | return imageId; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /biye/app/src/test/java/com/example/biye/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.biye; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /biye/app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable/stayedit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /biye/app/src/main/java/com/example/biye/Msg.java: -------------------------------------------------------------------------------- 1 | package com.example.biye; 2 | 3 | public class Msg { 4 | 5 | public static final int TYPE_RECEIVED = 0; 6 | public static final int TYPE_SEND = 1; 7 | private String content; 8 | private int type; 9 | 10 | public Msg(String content,int type) { 11 | this.content = content; 12 | this.type = type; 13 | } 14 | 15 | public String getContent() { 16 | return content; 17 | } 18 | public int getType() { 19 | return type; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /biye/app/src/main/res/layout/shouru_frament.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /biye/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /biye/app/src/main/res/drawable/yuan.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /biye/app/src/main/res/layout/zhichu_frament.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /biye/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | google() 6 | jcenter() 7 | 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.5.3' 11 | 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /biye/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /biye/app/src/main/java/com/example/biye/shouruFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.biye; 2 | 3 | import android.content.Context; 4 | import android.net.Uri; 5 | import android.os.Bundle; 6 | 7 | import androidx.fragment.app.Fragment; 8 | 9 | import android.view.LayoutInflater; 10 | import android.view.View; 11 | import android.view.ViewGroup; 12 | 13 | public class shouruFragment extends Fragment { 14 | 15 | 16 | @Override 17 | public View onCreateView(LayoutInflater inflater, ViewGroup container, 18 | Bundle savedInstanceState) { 19 | // Inflate the layout for this fragment 20 | return inflater.inflate(R.layout.shouru_frament, container, false); 21 | } 22 | } -------------------------------------------------------------------------------- /biye/app/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | 14 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /biye/app/src/main/res/layout/contacts_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | 13 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /biye/app/src/main/java/com/example/biye/ZhichuFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.biye; 2 | 3 | import android.os.Bundle; 4 | import android.view.LayoutInflater; 5 | import android.view.View; 6 | import android.view.ViewGroup; 7 | import android.widget.TextView; 8 | 9 | import androidx.annotation.Nullable; 10 | import androidx.fragment.app.Fragment; 11 | 12 | import com.example.biye.R; 13 | 14 | public class ZhichuFragment extends Fragment { 15 | @Override 16 | public View onCreateView(LayoutInflater inflater, ViewGroup container, 17 | Bundle savedInstanceState) { 18 | // Inflate the layout for this fragment 19 | View view = inflater.inflate(R.layout.zhichu_frament, container, false); 20 | return view; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /biye/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |