Commit c7a1c6cc authored by 张释方's avatar 张释方

提交清理完成頁

parent 45d3998f
*.iml
.DS_Store
gradle.properties
local.properties
/.idea
/.gradle
/build
/gradle
#lib project
app/build
wheelsruflibray/build
shareSdkLib/build
picture_library/build
ucrop/build
......@@ -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'
......
This diff is collapsed.
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(-0x1)
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) {
}
}
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(-0x1)
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) {
}
}
<?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
<?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
This diff is collapsed.
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment