|
|
@ -1,6 +1,7 @@ |
|
|
|
package io.legado.app.ui.widget.page |
|
|
|
package io.legado.app.ui.widget.page |
|
|
|
|
|
|
|
|
|
|
|
import android.content.Context |
|
|
|
import android.content.Context |
|
|
|
|
|
|
|
import android.graphics.drawable.Drawable |
|
|
|
import android.util.AttributeSet |
|
|
|
import android.util.AttributeSet |
|
|
|
import android.widget.FrameLayout |
|
|
|
import android.widget.FrameLayout |
|
|
|
import androidx.appcompat.widget.AppCompatImageView |
|
|
|
import androidx.appcompat.widget.AppCompatImageView |
|
|
@ -30,11 +31,18 @@ class ContentView : FrameLayout { |
|
|
|
|
|
|
|
|
|
|
|
fun upStyle() { |
|
|
|
fun upStyle() { |
|
|
|
page_panel.horizontalPadding = 16.dp |
|
|
|
page_panel.horizontalPadding = 16.dp |
|
|
|
ImageLoader.load(context, R.drawable.bg1) |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fun setBg(bg: Drawable?) { |
|
|
|
|
|
|
|
ImageLoader.load(context, bg) |
|
|
|
.centerCrop() |
|
|
|
.centerCrop() |
|
|
|
.setAsDrawable(bgImage) |
|
|
|
.setAsDrawable(bgImage) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fun setBgColor(color: Int) { |
|
|
|
|
|
|
|
page_panel.setBackgroundColor(color) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
fun upTime() { |
|
|
|
fun upTime() { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|