Commit 8f2807ff55e939b335bbdb3710a2440689501619
1 parent
023fc79c
seventh-2
Showing
4 changed files
with
4 additions
and
3 deletions
OutSide_Share/src/main/java/com/cnlive/outside_share/activity/ShareIMActivity.java
| ... | ... | @@ -94,7 +94,7 @@ public class ShareIMActivity extends AppCompatActivity { |
| 94 | 94 | protected void onCreate(@Nullable Bundle savedInstanceState) { |
| 95 | 95 | super.onCreate(savedInstanceState); |
| 96 | 96 | setContentView(R.layout.sharemoment); |
| 97 | - StatusBarUtil2.setColor(this, getResources().getColor(R.color.shareOut), 0); | |
| 97 | + StatusBarUtil2.setColor(this, getResources().getColor(R.color.share), 0); | |
| 98 | 98 | timer = new Timer(); |
| 99 | 99 | photoTimer = new Timer(); |
| 100 | 100 | type = getIntent().getStringExtra("type"); | ... | ... |
OutSide_Share/src/main/java/com/cnlive/outside_share/activity/ShareMomentActivity.java
| ... | ... | @@ -84,7 +84,7 @@ public class ShareMomentActivity extends AppCompatActivity { |
| 84 | 84 | protected void onCreate(@Nullable Bundle savedInstanceState) { |
| 85 | 85 | super.onCreate(savedInstanceState); |
| 86 | 86 | setContentView(R.layout.sharemoment); |
| 87 | - StatusBarUtil2.setColor(this, getResources().getColor(R.color.shareOut), 0); | |
| 87 | + StatusBarUtil2.setColor(this, getResources().getColor(R.color.share), 0); | |
| 88 | 88 | ImageView imageview = findViewById(R.id.im); |
| 89 | 89 | rotateAnimation = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); |
| 90 | 90 | rotateAnimation.setFillAfter(true); | ... | ... |
OutSide_Share/src/main/res/values/colors.xml
app/build.gradle
| ... | ... | @@ -10,6 +10,7 @@ android { |
| 10 | 10 | targetSdkVersion 29 |
| 11 | 11 | versionCode 1 |
| 12 | 12 | versionName "1.0" |
| 13 | + multiDexEnabled true | |
| 13 | 14 | javaCompileOptions {buildToolsVersion |
| 14 | 15 | annotationProcessorOptions { |
| 15 | 16 | arguments = [AROUTER_MODULE_NAME: project.getName(), AROUTER_GENERATE_DOC: "enable"] | ... | ... |