线性布局内部的各视图有两种排列方式:
orientation属性值为horizontal时,内部视图在水平方向从左往右排列。
orientation属性值为vertical时,内部视图在垂直方向从上往下排列。
如果不指定orientation属性,则LinearLayout默认水...
yekong
2年前 (2022-12-31)
喜欢
设置视图的对齐方式有两种途径:
采用layout_gravity属性,它指定了当前视图相对于上级视图的对齐方式。
采用gravity属性,它指定了下级视图相对于当前视图的对齐方式。
layout_gravity与gravity的取值包括:left、 top、 right、 bot...
yekong
2年前 (2022-12-31)
喜欢
设置视图的间距有两种方式:
采用layout_margin属性,它指定了当前视图与周围平级视图之间的距离。包括layout_margin、
layout_marginLeft、 layout_marginTop、 layout_marginRight. layout_margin...
yekong
2年前 (2022-12-31)
喜欢
视图宽度通过属性androidlayout_width表达,视图高度通过属性android:layout_heig
ht表达,宽高的取值主要有下列三种:
match_parent:表示与上级视图保持一致。
wrap_content:表示与内容自适应。
以dp为单位的具体尺寸。
x...
yekong
2年前 (2022-12-31)
喜欢
java设置背景颜色
使用setBackgroundColor或者setBackgroundResource设置背景色
package com.example.chapter03;
import android.graphics.Color;
import android.os...
yekong
2年前 (2022-12-30)
喜欢
java设置文字颜色
setTextColor
package com.example.chapter03;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextV...
yekong
2年前 (2022-12-30)
喜欢
在 Java 代码中调用 setTextSize 方法,即可指定文本大小。
在XML 文件中则通过属性 android:textSize 指定文本大小,此时需要指定字号单位。
px:它是手机屏幕的最小显示单位,与设备的显示屏有关。
dp:它是与设备无关的显示单位,只与屏幕的尺寸有...
yekong
2年前 (2022-12-30)
喜欢
在xml中直接设置
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/a...
yekong
2年前 (2022-12-30)
喜欢
Three.js背景完全透明(模型悬浮在网页上)
通过Three.js渲染器WebGLRenderer的alpha属性值设置为true就可以,WebGL渲染器的alpha属性默认值是false。
// 在构造函数参数中设置alpha属性的值
var renderer = new ...
yekong
2年前 (2022-12-30)
喜欢
uniapp uni.chooseLocation h5选择位置时,顶部的确认和取消显示异常,于是通过全局css进行了配置处理
getAddress() {
var that = this;
uni.chooseLocation({
success: function(r...
yekong
2年前 (2022-12-29)
喜欢