pull/32/head
parent
11c796456c
commit
794a27f079
@ -1,35 +0,0 @@ |
|||||||
package io.legado.app.lib.theme.view |
|
||||||
|
|
||||||
import android.content.Context |
|
||||||
import android.util.AttributeSet |
|
||||||
import android.view.View |
|
||||||
import android.widget.Switch |
|
||||||
import androidx.appcompat.widget.SwitchCompat |
|
||||||
import io.legado.app.lib.theme.ATH |
|
||||||
import io.legado.app.lib.theme.ThemeStore |
|
||||||
|
|
||||||
/** |
|
||||||
* @author Aidan Follestad (afollestad) |
|
||||||
*/ |
|
||||||
class ATEStockSwitch : SwitchCompat { |
|
||||||
|
|
||||||
constructor(context: Context) : super(context) { |
|
||||||
init(context, null) |
|
||||||
} |
|
||||||
|
|
||||||
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) { |
|
||||||
init(context, attrs) |
|
||||||
} |
|
||||||
|
|
||||||
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr) { |
|
||||||
init(context, attrs) |
|
||||||
} |
|
||||||
|
|
||||||
private fun init(context: Context, attrs: AttributeSet?) { |
|
||||||
ATH.setTint(this, ThemeStore.accentColor(context)) |
|
||||||
} |
|
||||||
|
|
||||||
override fun isShown(): Boolean { |
|
||||||
return parent != null && visibility == View.VISIBLE |
|
||||||
} |
|
||||||
} |
|
@ -1,73 +1,35 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
android:orientation="vertical"> |
android:padding="16dp" |
||||||
|
android:orientation="horizontal" |
||||||
<LinearLayout |
android:layout_gravity="center_vertical"> |
||||||
android:layout_width="match_parent" |
|
||||||
|
<io.legado.app.lib.theme.view.ATECheckBox |
||||||
|
android:id="@+id/cb_book_source" |
||||||
|
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="horizontal" |
android:layout_gravity="center" |
||||||
android:padding="16dp"> |
android:layout_weight="1" |
||||||
|
android:singleLine="true" |
||||||
<io.legado.app.lib.theme.view.ATECheckBox |
android:text="" |
||||||
android:id="@+id/cb_book_source" |
android:textColor="@color/tv_text_default"/> |
||||||
android:layout_width="0dp" |
|
||||||
android:layout_height="wrap_content" |
<io.legado.app.lib.theme.view.ATESwitch |
||||||
android:layout_gravity="center" |
android:id="@+id/sw_enabled" |
||||||
android:layout_weight="1" |
android:layout_width="wrap_content" |
||||||
android:singleLine="true" |
android:layout_height="wrap_content"/> |
||||||
android:text="" |
|
||||||
android:textColor="@color/tv_text_default"/> |
<ImageView |
||||||
|
android:id="@+id/iv_more" |
||||||
<LinearLayout |
android:layout_width="40dp" |
||||||
android:layout_width="wrap_content" |
android:layout_height="40dp" |
||||||
android:layout_height="match_parent" |
android:layout_gravity="center" |
||||||
android:orientation="horizontal"> |
android:layout_weight="1" |
||||||
|
android:background="@drawable/bg_ib_pre_round" |
||||||
<androidx.appcompat.widget.AppCompatImageView |
android:contentDescription="@string/to_top" |
||||||
android:id="@+id/iv_edit_source" |
android:padding="8dp" |
||||||
android:layout_width="40dp" |
android:src="@drawable/ic_more_vert" |
||||||
android:layout_height="40dp" |
app:tint="@color/tv_text_default"/> |
||||||
android:layout_gravity="center" |
|
||||||
android:layout_weight="1" |
|
||||||
android:background="@drawable/bg_ib_pre_round" |
|
||||||
android:contentDescription="@string/edit" |
|
||||||
android:padding="8dp" |
|
||||||
android:src="@drawable/ic_edit" |
|
||||||
app:tint="@color/tv_text_default"/> |
|
||||||
|
|
||||||
<ImageView |
|
||||||
android:id="@+id/iv_top_source" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="40dp" |
|
||||||
android:layout_gravity="center" |
|
||||||
android:layout_weight="1" |
|
||||||
android:background="@drawable/bg_ib_pre_round" |
|
||||||
android:contentDescription="@string/to_top" |
|
||||||
android:padding="8dp" |
|
||||||
android:src="@drawable/ic_top_source" |
|
||||||
app:tint="@color/tv_text_default"/> |
|
||||||
|
|
||||||
<ImageView |
|
||||||
android:id="@+id/iv_del_source" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="40dp" |
|
||||||
android:layout_gravity="center" |
|
||||||
android:layout_weight="1" |
|
||||||
android:background="@drawable/bg_ib_pre_round" |
|
||||||
android:contentDescription="@string/delete" |
|
||||||
android:padding="8dp" |
|
||||||
android:src="@drawable/ic_clear_all" |
|
||||||
app:tint="@color/tv_text_default"/> |
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
<View |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="0.5dp" |
|
||||||
android:background="@color/btn_bg_press"/> |
|
||||||
</LinearLayout> |
</LinearLayout> |
@ -1,4 +1,7 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<resources> |
<resources> |
||||||
|
<item name="menu_edit" type="id"/> |
||||||
|
<item name="menu_del" type="id"/> |
||||||
|
<item name="menu_top" type="id"/> |
||||||
|
|
||||||
</resources> |
</resources> |
Loading…
Reference in new issue