一、问题描述 现有一个需求:要求加载出来的网络图片等比缩放并居中显示。外层布局用的是RelativeLayout,子View是一个ImageView和一个视频播放器的View。所以理所当然的就给子View设置了 android:layout_centerInParent="true",运行后并没有达 ...
分类:
其他好文 时间:
2020-12-19 13:32:48
阅读次数:
2
springcloud搭建eureka服务 1、创建一个springboot的pom工程作为父工程控制版本 案例创建的工程名为:springcloue_parent_02 修改pom文件 修改工程类型为pom <packaging>pom</packaging> 导入依赖 <!--Springclo ...
分类:
编程语言 时间:
2020-12-18 12:48:30
阅读次数:
2
pom.xml <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE</version> <rel ...
分类:
编程语言 时间:
2020-12-18 12:33:50
阅读次数:
1
1、说明 Spring Boot为开发者提供了一个名为spring-boot-devtools的模块来使Spring Boot应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。 2、配置方法 2.1、首先确认工程继承自 spring-boot-starter-parent ...
分类:
编程语言 时间:
2020-12-17 12:17:46
阅读次数:
2
Child.prototype = Parent.prototype和Child.prototype = new Parent()的区别 ## 1、Child.prototype = new Parent()取不到Child原型上的属性,constructor指向Parent //父类 functi ...
分类:
其他好文 时间:
2020-12-16 11:46:13
阅读次数:
3
parent元素项目基本信息prerequisites元素issueManagement元素ciManagement元素inceptionYear&mailingLists元素developers元素contributors元素licenses元素scm(SourceControlManagement)元素organization元素build元素build元素中的resources元素b
分类:
其他好文 时间:
2020-12-10 11:05:20
阅读次数:
2
在布局根节点加上下面三行 android:id="@+id/view_parent" android:clickable="true" android:focusableInTouchMode="true" 在代码中监听view_parent的FocusChangeListener事件 view_p ...
分类:
移动开发 时间:
2020-12-09 12:22:44
阅读次数:
17
本文将详细介绍批量获取API(MultiGetAPI)与BulkAPI。1、MultiGetAPIpublicfinalMultiGetResponsemget(MultiGetRequestmultiGetRequest,RequestOptionsoptions)throwsIOExceptionpublicfinalvoidmgetAsync(MultiGetRequestmultiGetR
当在页面中插入图片时,img 默认底部有空白效果。 产生的原因: 由于图片的 display 属性默认是 inline ,vertical-align 属性的默认值是 baseline (以基线对齐),所以图片底部出现留白区域。 常用解决方法: 将 img 变为块级元素 img { display: ...
分类:
其他好文 时间:
2020-12-07 12:00:28
阅读次数:
4
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
分类:
移动开发 时间:
2020-12-04 11:32:09
阅读次数:
14