2019-04-11 18:05:41 +08:00
|
|
|
|
package com.novelbook.android.utils;
|
|
|
|
|
|
2019-04-23 22:45:08 +08:00
|
|
|
|
import com.novelbook.android.bean.Progress;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2019-04-11 18:05:41 +08:00
|
|
|
|
public class Constants {
|
2019-04-12 23:02:31 +08:00
|
|
|
|
public static final String BLOCK_TITLE_NOVELS = "ns";
|
|
|
|
|
public static final int NOVEL_SPAN_CNT =3 ; //grid columns
|
2019-04-21 10:57:20 +08:00
|
|
|
|
public static final boolean SHOWAD =false ;
|
2019-04-23 22:45:08 +08:00
|
|
|
|
public static int SEX=1; //1 男,2女
|
2019-04-20 00:26:49 +08:00
|
|
|
|
public static String A_Regex = "<a[^>]+href[\\s]*=[\\s]*['\"]?([^'\"]+)['\"\\s]?[^>]*>([^<]+)<"; //TODO: 从服务器更新
|
2019-04-23 22:45:08 +08:00
|
|
|
|
public static List<String> lstProperties =null;
|
|
|
|
|
public static List<String> lstSex =null;
|
|
|
|
|
public static List<String> lstNt=null;
|
|
|
|
|
//public static List<Progress> lstProgress=null;
|
|
|
|
|
public static String[] lstProgress={"连载中","已完本","新书"};
|
2019-04-11 18:05:41 +08:00
|
|
|
|
}
|