Android UI小技巧

1.文字阴影添加

废话不多说,上代码:
本文直接用的是style,也可以在TextView或者有文字的控件中直接使用这四种属性。

<style name="ShadowStyle">
        <item name="android:shadowColor">#66000000</item>
        <item name="android:shadowRadius">3.0</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
    </style>

属性介绍:
android:shadowColor 阴影的颜色
android:shadowDx 阴影的水平偏移量
android:shadowDy 阴影的垂直偏移量
android:shadowRadius 阴影的范围
android:shadowRadius=0 的时候是看不到阴影的

2.Spinner添加下拉框竖直偏移量

 <style name="spinner" parent="Widget.AppCompat.DropDownItem.Spinner">
        <item name="android:dropDownVerticalOffset">@dimen/dp40</item>
    </style>

3.fontFamily配置字体

<TextView
            android:id="@+id/tv_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="@font/dfpking_gothicgb_medium"
            android:text="@{item.name}"
            android:textColor="@color/white"
            android:textSize="@dimen/dp18" />
//兼容多个版本
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <font
        android:font="@font/dfpking_gothicgb_medium"
        android:fontStyle="normal"
        android:fontWeight="400"
        app:font="@font/dfpking_gothicgb_medium"
        app:fontStyle="normal"
        app:fontWeight="400" />
</font-family>

4. 单行显示行尾显示…

<TextView
            android:id="@+id/tv_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@{item.name}"
            android:singleLine="true"
            android:ellipsize="end"
            android:textColor="@color/white"
            android:textSize="@dimen/dp18" />
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值