1.ScrollView系列去掉滑动最左右两端的阴影属性
android:fadingEdge="none"
android:overScrollMode="never"
2.TextView的行间距
- 设置行间距
android:lineSpacingExtra="5dp"
- 设置行间距的倍数
android:lineSpacingMultiplier="1.5"
- 设置标签文字
tv.setText(Html.fromHtml("<p>文字内容</p>"));
3.Button系列的英文text小写
android:textAllCaps="false";
4.toolbar去除左边的内边距
app:contentInsetStart="0dp"
toolbar内容不能占满整个屏幕,没加之前是这样的:
5.ProgressBar改变颜色
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminateTint="#0000ff"
/>