Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_flowbox
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
0
Merge Requests
0
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
android
android_flowbox
Commits
c7a1c6cc
Commit
c7a1c6cc
authored
Jun 29, 2021
by
张释方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交清理完成頁
parent
45d3998f
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
513 additions
and
95 deletions
+513
-95
.gitignore
.gitignore
+15
-0
build.gradle
app/build.gradle
+1
-0
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+62
-94
Increasespeed2Activity.kt
.../com/mints/flowbox/ui/activitys/Increasespeed2Activity.kt
+44
-0
IncreasespeedActivity.kt
...a/com/mints/flowbox/ui/activitys/IncreasespeedActivity.kt
+47
-0
shape_bg_speed.xml
app/src/main/res/drawable/shape_bg_speed.xml
+11
-0
activity_increasespeed.xml
app/src/main/res/layout/activity_increasespeed.xml
+97
-0
activity_increasespeed2.xml
app/src/main/res/layout/activity_increasespeed2.xml
+233
-0
bg_right.png
app/src/main/res/mipmap-xhdpi/bg_right.png
+0
-0
bg_speed_right.png
app/src/main/res/mipmap-xhdpi/bg_speed_right.png
+0
-0
gradle.properties
gradle.properties
+3
-1
No files found.
.gitignore
0 → 100644
View file @
c7a1c6cc
*.iml
.DS_Store
gradle.properties
local.properties
/.idea
/.gradle
/build
/gradle
#lib project
app/build
wheelsruflibray/build
shareSdkLib/build
picture_library/build
ucrop/build
app/build.gradle
View file @
c7a1c6cc
...
...
@@ -178,6 +178,7 @@ dependencies {
// 图片加载
implementation
'com.github.bumptech.glide:glide:4.11.0'
implementation
'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
implementation
"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
annotationProcessor
'com.github.bumptech.glide:compiler:4.11.0'
// 65536
implementation
'androidx.multidex:multidex:2.0.1'
...
...
app/src/main/AndroidManifest.xml
View file @
c7a1c6cc
This diff is collapsed.
Click to expand it.
app/src/main/java/com/mints/flowbox/ui/activitys/Increasespeed2Activity.kt
0 → 100644
View file @
c7a1c6cc
package
com.mints.flowbox.ui.activitys
import
androidx.appcompat.app.AppCompatActivity
import
android.os.Bundle
import
android.view.View
import
com.mints.flowbox.R
import
com.mints.flowbox.ui.activitys.base.BaseActivity
import
com.scwang.smartrefresh.layout.api.RefreshLayout
import
com.scwang.smartrefresh.layout.listener.OnRefreshListener
import
kotlinx.android.synthetic.main.header_layout.*
class
Increasespeed2Activity
:
BaseActivity
(),
View
.
OnClickListener
,
OnRefreshListener
{
override
fun
onCreate
(
savedInstanceState
:
Bundle
?)
{
super
.
onCreate
(
savedInstanceState
)
setContentView
(
R
.
layout
.
activity_increasespeed
)
}
override
fun
getContentViewLayoutID
():
Int
{
TODO
(
"Not yet implemented"
)
}
override
fun
initViewsAndEvents
()
{
tv_title
.
text
=
"一键提速"
tv_title
.
setTextColor
(-
0
x1
)
iv_left_icon
.
visibility
=
View
.
VISIBLE
iv_left_icon
.
setImageResource
(
R
.
mipmap
.
ic_arrow_back_white
)
iv_left_icon
.
setOnClickListener
(
this
)
}
override
fun
isApplyKitKatTranslucency
():
Boolean
{
TODO
(
"Not yet implemented"
)
}
override
fun
onClick
(
v
:
View
?)
{
when
(
v
?.
id
)
{
R
.
id
.
iv_left_icon
->
finish
()
}
}
override
fun
onRefresh
(
refreshLayout
:
RefreshLayout
)
{
}
}
app/src/main/java/com/mints/flowbox/ui/activitys/IncreasespeedActivity.kt
0 → 100644
View file @
c7a1c6cc
package
com.mints.flowbox.ui.activitys
import
androidx.appcompat.app.AppCompatActivity
import
android.os.Bundle
import
android.view.View
import
com.mints.flowbox.R
import
com.mints.flowbox.ui.activitys.base.BaseActivity
import
com.scwang.smartrefresh.layout.api.RefreshLayout
import
com.scwang.smartrefresh.layout.listener.OnRefreshListener
import
kotlinx.android.synthetic.main.header_layout.*
class
IncreasespeedActivity
:
BaseActivity
(),
View
.
OnClickListener
,
OnRefreshListener
{
override
fun
onCreate
(
savedInstanceState
:
Bundle
?)
{
super
.
onCreate
(
savedInstanceState
)
setContentView
(
R
.
layout
.
activity_increasespeed
)
}
override
fun
getContentViewLayoutID
():
Int
{
TODO
(
"Not yet implemented"
)
}
override
fun
initViewsAndEvents
()
{
tv_title
.
text
=
"检测结果"
tv_title
.
setTextColor
(-
0
x1
)
iv_left_icon
.
visibility
=
View
.
VISIBLE
iv_left_icon
.
setImageResource
(
R
.
mipmap
.
ic_arrow_back_white
)
iv_left_icon
.
setOnClickListener
(
this
)
}
override
fun
isApplyKitKatTranslucency
():
Boolean
{
TODO
(
"Not yet implemented"
)
}
override
fun
onClick
(
v
:
View
?)
{
when
(
v
?.
id
)
{
R
.
id
.
iv_left_icon
->
{
readyGo
(
Increasespeed2Activity
::
class
.
java
)
}
}
}
override
fun
onRefresh
(
refreshLayout
:
RefreshLayout
)
{
}
}
app/src/main/res/drawable/shape_bg_speed.xml
0 → 100644
View file @
c7a1c6cc
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:shape=
"rectangle"
>
<gradient
android:angle=
"90"
android:endColor=
"#8278DC"
android:startColor=
"#A29CDF"
android:type=
"linear"
android:useLevel=
"true"
/>
</shape>
\ No newline at end of file
app/src/main/res/layout/activity_increasespeed.xml
0 → 100644
View file @
c7a1c6cc
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:id=
"@+id/scrollviewMy"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:focusable=
"true"
android:focusableInTouchMode=
"true"
android:overScrollMode=
"never"
>
<FrameLayout
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<View
android:layout_width=
"match_parent"
android:layout_height=
"281dp"
android:background=
"@drawable/shape_bg_speed"
/>
<LinearLayout
android:id=
"@+id/llMyRoot"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
>
<include
layout=
"@layout/header_layout"
/>
<RelativeLayout
android:layout_marginTop=
"60dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
>
<ImageView
android:id=
"@+id/im_rigth"
android:layout_width=
"64dp"
android:layout_height=
"64dp"
android:layout_marginLeft=
"38dp"
android:src=
"@mipmap/bg_speed_right"
/>
<TextView
android:id=
"@+id/tv1"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"24dp"
android:layout_marginTop=
"5dp"
android:layout_toRightOf=
"@+id/im_rigth"
android:text=
"运行速度已提升"
android:textColor=
"#FFFFFF"
android:textSize=
"21sp"
/>
<TextView
android:layout_marginTop=
"5dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"25%"
android:textSize=
"21sp"
android:textColor=
"#E9EA5B"
android:layout_toRightOf=
"@+id/tv1"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"成功清理X款软件"
android:textSize=
"12sp"
android:layout_marginTop=
"5dp"
android:textColor=
"#FFFFFF"
android:layout_below=
"@+id/tv1"
android:layout_alignLeft=
"@+id/tv1"
/>
</RelativeLayout>
<RelativeLayout
android:layout_width=
"match_parent"
android:layout_height=
"281dp"
android:layout_marginStart=
"15dp"
android:layout_marginTop=
"110dp"
android:layout_marginEnd=
"15dp"
android:layout_marginBottom=
"20dp"
android:background=
"@drawable/shape_gold_card"
android:elevation=
"10dp"
android:padding=
"10dp"
>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerInParent=
"true"
android:text=
"广告位"
android:textColor=
"@color/color_AAA"
android:textSize=
"23sp"
/>
</RelativeLayout>
</LinearLayout>
</FrameLayout>
</androidx.core.widget.NestedScrollView>
\ No newline at end of file
app/src/main/res/layout/activity_increasespeed2.xml
0 → 100644
View file @
c7a1c6cc
This diff is collapsed.
Click to expand it.
app/src/main/res/mipmap-xhdpi/bg_right.png
0 → 100644
View file @
c7a1c6cc
2.33 KB
app/src/main/res/mipmap-xhdpi/bg_speed_right.png
0 → 100644
View file @
c7a1c6cc
4.95 KB
gradle.properties
View file @
c7a1c6cc
...
...
@@ -59,4 +59,6 @@ BUILD_DIRECT_DEPENDENCIES=0
# -------------
mints_APPLICATION_ID
=
com.mints.flowbox
mints_APPLICATION_NAME
=
流量宝盒
mints_GLOBAL_COMMERCIAL_VERSION
=
true
\ No newline at end of file
mints_GLOBAL_COMMERCIAL_VERSION
=
true
android.injected.testOnly
=
false
\ No newline at end of file
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