Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RvApp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lify
RvApp
Commits
faa31461
Commit
faa31461
authored
Jun 08, 2019
by
linfeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
配置文件
parent
ec291bde
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
3 deletions
+24
-3
build.gradle
RvClient/build.gradle
+1
-0
AndroidManifest.xml
RvClient/src/main/AndroidManifest.xml
+16
-0
ModuleUtil.java
RvClient/src/main/java/com/test/rv/ModuleUtil.java
+6
-3
settings.gradle
settings.gradle
+1
-0
No files found.
RvClient/build.gradle
View file @
faa31461
...
...
@@ -45,5 +45,6 @@ dependencies {
api
project
(
path:
':RvTravel'
)
api
project
(
path:
':RvHome'
)
api
project
(
path:
':RvMine'
)
}
RvClient/src/main/AndroidManifest.xml
View file @
faa31461
...
...
@@ -322,6 +322,22 @@
</receiver>
<!-- ===============================FrameBase框架End=========================== -->
<!--=================================================================-->
<!-- 我的模块 -->
<activity
android:name=
"com.rv.rvmine.MineActivity"
android:launchMode=
"singleTask"
android:screenOrientation=
"portrait"
/>
<!--身份证认证-->
<activity
android:name=
"com.rv.rvmine.IDCardCertificationActivity"
android:launchMode=
"singleTask"
android:screenOrientation=
"portrait"
/>
<!--=================================================================-->
</application>
</manifest>
\ No newline at end of file
RvClient/src/main/java/com/test/rv/ModuleUtil.java
View file @
faa31461
...
...
@@ -7,6 +7,7 @@ import com.frame.base.FrameApp;
import
com.frame.rv.ModuleChangeUtil
;
import
com.frame.rv.OnModuleChangedListener
;
import
com.rv.home.rv.module.ui.main.HomeActivity
;
import
com.rv.rvmine.MineActivity
;
import
com.rv.travel.TravelActivity
;
public
class
ModuleUtil
{
...
...
@@ -48,9 +49,11 @@ public class ModuleUtil {
break
;
case
OnModuleChangedListener
.
MODULE_MINE
:
if
(
currentModule
==
OnModuleChangedListener
.
MODULE_MINE
)
return
;
//Toast.makeText(FrameApp.getInstance(), "我的", Toast.LENGTH_SHORT).show();
if
(
ModuleChangeUtil
.
currentActivity
!=
null
)
{
IntentUtil
.
goActivityWithAnimationAlpha
(
ModuleChangeUtil
.
currentActivity
,
MineActivity
.
class
);
}
else
{
IntentUtil
.
startActivity
(
FrameApp
.
getInstance
(),
MineActivity
.
class
);
}
break
;
}
currentModule
=
module
;
...
...
settings.gradle
View file @
faa31461
...
...
@@ -10,5 +10,6 @@ include ':Resource'
include
':Utils'
include
':MyFrame'
include
':Banner'
include
':RvMine'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment