字体大小
This commit is contained in:
parent
2d0d92b32d
commit
be28aa49c9
@ -1,5 +1,6 @@
|
|||||||
<component name="ProjectCodeStyleConfiguration">
|
<component name="ProjectCodeStyleConfiguration">
|
||||||
<code_scheme name="Project" version="173">
|
<code_scheme name="Project" version="173">
|
||||||
|
<option name="ENABLE_SECOND_REFORMAT" value="true" />
|
||||||
<JavaCodeStyleSettings>
|
<JavaCodeStyleSettings>
|
||||||
<option name="FIELD_NAME_PREFIX" value="m" />
|
<option name="FIELD_NAME_PREFIX" value="m" />
|
||||||
</JavaCodeStyleSettings>
|
</JavaCodeStyleSettings>
|
||||||
|
@ -90,7 +90,7 @@ dependencies {
|
|||||||
api "io.github.razerdp:BasePopup:$rootProject.popup_version"
|
api "io.github.razerdp:BasePopup:$rootProject.popup_version"
|
||||||
//选择器
|
//选择器
|
||||||
api 'io.github.lucksiege:pictureselector:v2.7.3-rc08'
|
api 'io.github.lucksiege:pictureselector:v2.7.3-rc08'
|
||||||
api 'me.rosuh:AndroidFilePicker:0.7.0-x'
|
api 'me.rosuh:AndroidFilePicker:0.8.3'
|
||||||
|
|
||||||
//toast
|
//toast
|
||||||
api 'com.github.getActivity:ToastUtils:9.5'
|
api 'com.github.getActivity:ToastUtils:9.5'
|
||||||
|
@ -10,6 +10,8 @@ import android.app.Service;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.pm.ActivityInfo;
|
import android.content.pm.ActivityInfo;
|
||||||
|
import android.content.res.Configuration;
|
||||||
|
import android.content.res.Resources;
|
||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
@ -159,8 +161,7 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
if (!TextUtils.isEmpty(deviceInfo)) {
|
if (!TextUtils.isEmpty(deviceInfo)) {
|
||||||
int navigationBarIsMin = 0;
|
int navigationBarIsMin = 0;
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
|
||||||
navigationBarIsMin = Settings.System.getInt(ctx.getContentResolver(),
|
navigationBarIsMin = Settings.System.getInt(ctx.getContentResolver(), deviceInfo, 0);
|
||||||
deviceInfo, 0);
|
|
||||||
} else {
|
} else {
|
||||||
if (Build.BRAND.equalsIgnoreCase("VIVO") || Build.BRAND.equalsIgnoreCase("OPPO")) {
|
if (Build.BRAND.equalsIgnoreCase("VIVO") || Build.BRAND.equalsIgnoreCase("OPPO")) {
|
||||||
navigationBarIsMin = Settings.Secure.getInt(ctx.getContentResolver(), deviceInfo, 0);
|
navigationBarIsMin = Settings.Secure.getInt(ctx.getContentResolver(), deviceInfo, 0);
|
||||||
@ -363,8 +364,7 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
public void setEditTextInhibitInputSpeChat(EditText editText) {
|
public void setEditTextInhibitInputSpeChat(EditText editText) {
|
||||||
InputFilter inputFilter = new InputFilter() {
|
InputFilter inputFilter = new InputFilter() {
|
||||||
Pattern emoji = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]",
|
Pattern emoji = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]", Pattern.UNICODE_CASE | Pattern.CASE_INSENSITIVE);
|
||||||
Pattern.UNICODE_CASE | Pattern.CASE_INSENSITIVE);
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
|
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
|
||||||
@ -501,9 +501,7 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
|
|
||||||
private void openActivity(String path) {
|
private void openActivity(String path) {
|
||||||
ARouter.getInstance()
|
ARouter.getInstance().build(path).navigation();
|
||||||
.build(path)
|
|
||||||
.navigation();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getRunningTopActivity() {
|
private String getRunningTopActivity() {
|
||||||
@ -593,14 +591,19 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
// @Override
|
@Override
|
||||||
// public Resources getResources() {
|
public Resources getResources() {
|
||||||
// Resources res = super.getResources();
|
Resources res = super.getResources();
|
||||||
// Configuration config = new Configuration();
|
if (res != null) {
|
||||||
// config.setToDefaults();
|
Configuration config = res.getConfiguration();
|
||||||
// res.updateConfiguration(config, res.getDisplayMetrics());
|
if (config != null && config.fontScale != 1.0f) {
|
||||||
// return res;
|
config.fontScale = 1.0f;
|
||||||
// }
|
res.updateConfiguration(config, res.getDisplayMetrics());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
finish();
|
finish();
|
||||||
@ -620,10 +623,7 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
* @param imageUrls 图片地址Arraylist
|
* @param imageUrls 图片地址Arraylist
|
||||||
*/
|
*/
|
||||||
protected void startImageActivity(ArrayList imageUrls) {
|
protected void startImageActivity(ArrayList imageUrls) {
|
||||||
ARouter.getInstance()
|
ARouter.getInstance().build(PathConfig.PATH_MODULE_CMUTILS_PHOTO_SHOW).withStringArrayList("imgUrls", imageUrls).navigation();
|
||||||
.build(PathConfig.PATH_MODULE_CMUTILS_PHOTO_SHOW)
|
|
||||||
.withStringArrayList("imgUrls", imageUrls)
|
|
||||||
.navigation();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -638,21 +638,14 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
* @param requestCode 请求码
|
* @param requestCode 请求码
|
||||||
*/
|
*/
|
||||||
protected void startCameraActivity(boolean isMovie, int requestCode) {
|
protected void startCameraActivity(boolean isMovie, int requestCode) {
|
||||||
ARouter.getInstance()
|
ARouter.getInstance().build(PathConfig.PATH_MODULEMEDIA_CAMERA).withBoolean("isMovie", isMovie).navigation(this, requestCode);
|
||||||
.build(PathConfig.PATH_MODULEMEDIA_CAMERA)
|
|
||||||
.withBoolean("isMovie", isMovie)
|
|
||||||
.navigation(this, requestCode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void checkIsLogin(String path) {
|
protected void checkIsLogin(String path) {
|
||||||
if (TextUtils.isEmpty(UserLgUtils.getToken())) {
|
if (TextUtils.isEmpty(UserLgUtils.getToken())) {
|
||||||
ARouter.getInstance()
|
ARouter.getInstance().build(PathConfig.PATH_MODULE_MAIN_LOGIN).navigation(mActivity, 2333);
|
||||||
.build(PathConfig.PATH_MODULE_MAIN_LOGIN)
|
|
||||||
.navigation(mActivity, 2333);
|
|
||||||
} else {
|
} else {
|
||||||
ARouter.getInstance()
|
ARouter.getInstance().build(path).navigation();
|
||||||
.build(path)
|
|
||||||
.navigation();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
<dimen name="text_18">18sp</dimen>
|
<dimen name="text_18">18dp</dimen>
|
||||||
<dimen name="text_20">20sp</dimen>
|
<dimen name="text_20">20dp</dimen>
|
||||||
<dimen name="text_25">25sp</dimen>
|
<dimen name="text_25">25dp</dimen>
|
||||||
<dimen name="text_23">23sp</dimen>
|
<dimen name="text_23">23dp</dimen>
|
||||||
<dimen name="text_21">21sp</dimen>
|
<dimen name="text_21">21dp</dimen>
|
||||||
<dimen name="text_22">22sp</dimen>
|
<dimen name="text_22">22dp</dimen>
|
||||||
<dimen name="text_14">14sp</dimen>
|
<dimen name="text_14">14dp</dimen>
|
||||||
<dimen name="text_15">15sp</dimen>
|
<dimen name="text_15">15dp</dimen>
|
||||||
<dimen name="text_16">16sp</dimen>
|
<dimen name="text_16">16dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_active_item_max_width">168dp</dimen>
|
<dimen name="material_bottom_navigation_active_item_max_width">168dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_active_text_size">14sp</dimen>
|
<dimen name="material_bottom_navigation_active_text_size">14dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_elevation">8dp</dimen>
|
<dimen name="material_bottom_navigation_elevation">8dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_height">56dp</dimen>
|
<dimen name="material_bottom_navigation_height">56dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_item_max_width">96dp</dimen>
|
<dimen name="material_bottom_navigation_item_max_width">96dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_item_min_width">56dp</dimen>
|
<dimen name="material_bottom_navigation_item_min_width">56dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_margin">8dp</dimen>
|
<dimen name="material_bottom_navigation_margin">8dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_shadow_height">1dp</dimen>
|
<dimen name="material_bottom_navigation_shadow_height">1dp</dimen>
|
||||||
<dimen name="material_bottom_navigation_text_size">12sp</dimen>
|
<dimen name="material_bottom_navigation_text_size">12dp</dimen>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
@ -18,7 +18,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/sun"
|
android:text="@string/sun"
|
||||||
android:textColor="#333333"
|
android:textColor="#333333"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@ -27,7 +27,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/mon"
|
android:text="@string/mon"
|
||||||
android:textColor="#333333"
|
android:textColor="#333333"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@ -36,7 +36,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/tue"
|
android:text="@string/tue"
|
||||||
android:textColor="#333333"
|
android:textColor="#333333"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@ -44,7 +44,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/wed"
|
android:text="@string/wed"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@ -53,7 +53,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/thu"
|
android:text="@string/thu"
|
||||||
android:textColor="#333333"
|
android:textColor="#333333"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@ -62,7 +62,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/fri"
|
android:text="@string/fri"
|
||||||
android:textColor="#333333"
|
android:textColor="#333333"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
@ -145,7 +145,7 @@
|
|||||||
android:checked="true"
|
android:checked="true"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="相同"
|
android:text="相同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/rb_uneq"
|
android:id="@+id/rb_uneq"
|
||||||
@ -154,7 +154,7 @@
|
|||||||
android:button="@drawable/sel_radio_cir"
|
android:button="@drawable/sel_radio_cir"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="不同"
|
android:text="不同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -190,7 +190,7 @@
|
|||||||
android:checked="true"
|
android:checked="true"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="相同"
|
android:text="相同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/rb_uneq_door"
|
android:id="@+id/rb_uneq_door"
|
||||||
@ -199,7 +199,7 @@
|
|||||||
android:button="@drawable/sel_radio_cir"
|
android:button="@drawable/sel_radio_cir"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="不同"
|
android:text="不同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -286,5 +286,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -18,7 +18,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp"
|
android:textSize="18dp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:text="小区名称" />
|
tools:text="小区名称" />
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@
|
|||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="相同"
|
android:text="相同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/rb_uneq"
|
android:id="@+id/rb_uneq"
|
||||||
@ -156,7 +156,7 @@
|
|||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="不同"
|
android:text="不同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -193,7 +193,7 @@
|
|||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="相同"
|
android:text="相同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/rb_uneq_door"
|
android:id="@+id/rb_uneq_door"
|
||||||
@ -203,7 +203,7 @@
|
|||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:text="不同"
|
android:text="不同"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -290,5 +290,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -151,5 +151,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -151,5 +151,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -22,7 +22,7 @@
|
|||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
android:text="人员信息编辑"
|
android:text="人员信息编辑"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
@ -222,7 +222,7 @@
|
|||||||
android:background="@drawable/sel_btn_submit"
|
android:background="@drawable/sel_btn_submit"
|
||||||
android:text="保存"
|
android:text="保存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -245,5 +245,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -66,7 +66,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
style="@style/item_title"
|
style="@style/item_title"
|
||||||
android:text="初次发现日期"
|
android:text="初次发现日期"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -279,5 +279,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -344,5 +344,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -220,7 +220,7 @@
|
|||||||
style="@style/item_title"
|
style="@style/item_title"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:text="帮扶人姓名"
|
android:text="帮扶人姓名"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
|
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
@ -300,5 +300,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -253,5 +253,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -20,7 +20,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp"
|
android:textSize="18dp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:text="小区名称" />
|
tools:text="小区名称" />
|
||||||
|
|
||||||
|
@ -253,5 +253,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -273,5 +273,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -466,5 +466,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -148,5 +148,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -23,7 +23,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp"
|
android:textSize="18dp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:text="小区名称" />
|
tools:text="小区名称" />
|
||||||
|
|
||||||
|
@ -138,5 +138,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -333,5 +333,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -305,5 +305,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="删    除"
|
android:text="删    除"
|
||||||
android:textColor="@color/text_20"
|
android:textColor="@color/text_20"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -333,5 +333,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -239,5 +239,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -345,5 +345,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -313,5 +313,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="删    除"
|
android:text="删    除"
|
||||||
android:textColor="@color/text_20"
|
android:textColor="@color/text_20"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -345,5 +345,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -189,5 +189,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -216,5 +216,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="删    除"
|
android:text="删    除"
|
||||||
android:textColor="@color/text_20"
|
android:textColor="@color/text_20"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -189,5 +189,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -397,7 +397,7 @@
|
|||||||
android:background="@drawable/sel_btn_submit"
|
android:background="@drawable/sel_btn_submit"
|
||||||
android:text="保存"
|
android:text="保存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
</androidx.cardview.widget.CardView>
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -821,7 +821,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="身份证正面"
|
android:hint="身份证正面"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
@ -860,7 +860,7 @@
|
|||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="身份证反面"
|
android:hint="身份证反面"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="12sp" />
|
android:textSize="12dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -993,5 +993,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -163,7 +163,7 @@
|
|||||||
android:id="@+id/tv_start_time"
|
android:id="@+id/tv_start_time"
|
||||||
style="@style/item_content"
|
style="@style/item_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:textSize="12sp"
|
android:textSize="12dp"
|
||||||
tools:text="2021-12-21 22:22:22" />
|
tools:text="2021-12-21 22:22:22" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@ -179,7 +179,7 @@
|
|||||||
android:id="@+id/tv_end_time"
|
android:id="@+id/tv_end_time"
|
||||||
style="@style/item_content"
|
style="@style/item_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:textSize="12sp"
|
android:textSize="12dp"
|
||||||
tools:text="2021-12-21 22:22:22" />
|
tools:text="2021-12-21 22:22:22" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@ -211,7 +211,7 @@
|
|||||||
android:id="@+id/tv_rate"
|
android:id="@+id/tv_rate"
|
||||||
style="@style/item_content"
|
style="@style/item_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:textSize="12sp"
|
android:textSize="12dp"
|
||||||
tools:text="仅一次" />
|
tools:text="仅一次" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@ -235,7 +235,7 @@
|
|||||||
android:id="@+id/tv_check_state"
|
android:id="@+id/tv_check_state"
|
||||||
style="@style/item_content"
|
style="@style/item_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:textSize="12sp"
|
android:textSize="12dp"
|
||||||
tools:text="已回退" />
|
tools:text="已回退" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -190,7 +190,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="16sp"
|
android:textSize="16dp"
|
||||||
tools:text="当前登录人" />
|
tools:text="当前登录人" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -185,5 +185,5 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="保    存"
|
android:text="保    存"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="17sp" />
|
android:textSize="17dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
@ -22,7 +22,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="人口基础信息库"
|
android:text="人口基础信息库"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@ -38,7 +38,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="正常人群"
|
android:text="正常人群"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@ -65,7 +65,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="户籍信息"
|
android:text="户籍信息"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp"
|
android:textSize="18dp"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
|
||||||
@ -82,7 +82,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="流动人口"
|
android:text="流动人口"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -98,7 +98,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="留守人员"
|
android:text="留守人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
@ -110,7 +110,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="特殊人群"
|
android:text="特殊人群"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
@ -132,7 +132,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="刑满释放人员"
|
android:text="刑满释放人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -148,7 +148,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="社区矫正人员"
|
android:text="社区矫正人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -164,7 +164,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="肇事肇祸等严重精神障碍患者"
|
android:text="肇事肇祸等严重精神障碍患者"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -180,7 +180,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="吸毒人员"
|
android:text="吸毒人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@ -196,7 +196,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="艾滋病危险人员"
|
android:text="艾滋病危险人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@ -212,7 +212,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="重点青少年"
|
android:text="重点青少年"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@ -232,7 +232,7 @@
|
|||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:text="境外人员"
|
android:text="境外人员"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp" />
|
android:textSize="18dp" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:textColor="#ffffffff"
|
android:textColor="#ffffffff"
|
||||||
android:textSize="16sp"
|
android:textSize="16dp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:text="您好!桃子酱" />
|
tools:text="您好!桃子酱" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -76,7 +76,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="我的上报 29"
|
android:text="我的上报 29"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="1dp"
|
android:layout_width="1dp"
|
||||||
@ -93,7 +93,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="已办事件 29"
|
android:text="已办事件 29"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="13sp" />
|
android:textSize="13dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
@ -138,7 +138,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="考勤打卡"
|
android:text="考勤打卡"
|
||||||
android:textColor="@color/text_gray01"
|
android:textColor="@color/text_gray01"
|
||||||
android:textSize="16sp" />
|
android:textSize="16dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
@ -150,7 +150,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="点击进入打卡页面"
|
android:text="点击进入打卡页面"
|
||||||
android:textColor="@color/text_gray01"
|
android:textColor="@color/text_gray01"
|
||||||
android:textSize="8sp" />
|
android:textSize="8dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
@ -180,7 +180,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="通讯录"
|
android:text="通讯录"
|
||||||
android:textColor="@color/text_gray01"
|
android:textColor="@color/text_gray01"
|
||||||
android:textSize="16sp" />
|
android:textSize="16dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
@ -192,7 +192,7 @@
|
|||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="点击进入企业通讯录"
|
android:text="点击进入企业通讯录"
|
||||||
android:textColor="@color/text_gray01"
|
android:textColor="@color/text_gray01"
|
||||||
android:textSize="8sp" />
|
android:textSize="8dp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@ -224,7 +224,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:text="统计分析"
|
android:text="统计分析"
|
||||||
android:textColor="@color/text_444"
|
android:textColor="@color/text_444"
|
||||||
android:textSize="13sp"
|
android:textSize="13dp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@ -252,7 +252,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:text="其他"
|
android:text="其他"
|
||||||
android:textColor="@color/text_444"
|
android:textColor="@color/text_444"
|
||||||
android:textSize="13sp"
|
android:textSize="13dp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
@ -278,7 +278,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:text="集展示、统计及预防等为一体"
|
android:text="集展示、统计及预防等为一体"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="10sp" />
|
android:textSize="10dp" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@ -302,6 +302,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
|
android:textSize="@dimen/text_14"
|
||||||
android:text="命案基本信息" />
|
android:text="命案基本信息" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@ -333,6 +334,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
|
android:textSize="@dimen/text_14"
|
||||||
android:text="命案犯罪嫌疑人" />
|
android:text="命案犯罪嫌疑人" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@ -363,6 +365,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
|
android:textSize="@dimen/text_14"
|
||||||
android:text="命案受害人" />
|
android:text="命案受害人" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@ -398,7 +401,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="两新组织"
|
android:text="两新组织"
|
||||||
android:textColor="@color/text_black_57"
|
android:textColor="@color/text_black_57"
|
||||||
android:textSize="13sp"
|
android:textSize="13dp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<dimen name="dkplayer_controller_height">46dp</dimen>
|
<dimen name="dkplayer_controller_height">46dp</dimen>
|
||||||
<dimen name="dkplayer_controller_icon_padding">12dp</dimen>
|
<dimen name="dkplayer_controller_icon_padding">12dp</dimen>
|
||||||
<dimen name="dkplayer_controller_text_size">16sp</dimen>
|
<dimen name="dkplayer_controller_text_size">16dp</dimen>
|
||||||
<dimen name="dkplayer_default_spacing">10dp</dimen>
|
<dimen name="dkplayer_default_spacing">10dp</dimen>
|
||||||
<dimen name="dkplayer_controller_seekbar_size_n">14dp</dimen>
|
<dimen name="dkplayer_controller_seekbar_size_n">14dp</dimen>
|
||||||
<dimen name="dkplayer_controller_seekbar_size_s">14dp</dimen>
|
<dimen name="dkplayer_controller_seekbar_size_s">14dp</dimen>
|
||||||
<dimen name="dkplayer_controller_seekbar_max_size">1dp</dimen>
|
<dimen name="dkplayer_controller_seekbar_max_size">1dp</dimen>
|
||||||
<dimen name="dkplayer_play_btn_size">50dp</dimen>
|
<dimen name="dkplayer_play_btn_size">50dp</dimen>
|
||||||
<dimen name="dkplayer_controller_time_text_size">14sp</dimen>
|
<dimen name="dkplayer_controller_time_text_size">14dp</dimen>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in New Issue
Block a user