首页

源码搜藏网

首页 > 安卓源码 > 控件分类 > 其它控件 >

Android一个简单实用的标签控件,轻松添加最新最热等标签

创建时间:2018-01-04 23:38  

Android一个简单实用的标签控件,轻松添加最新最热等标签
Android一个简单实用的标签控件,轻松添加最新最热等标签
暂无演示 立即下载

#LablieView

效果图

使用说明

导入 lclablelibrary 到项目中

在 build.gradle 的 dependencies 添加:

	dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    ....
    compile project(':lclablelibrary')
    }

属性

Attribute 属性 Description 描述
lv_text 设置文字内容
lv_text_color 设置文字颜色,默认#ffffff
lv_text_size 设置文字大小,默认11sp
lv_text_bold 设置文字是否支持加粗,默认true
lv_text_all_caps 设置文字是否支持全部大写,默认true
lv_background_color 设置背景颜色,默认"#FF4081"
lv_min_size 设置LabelView所在矩形最小宽高,默认35dp或50dp
lv_padding 设置文字上下padding,默认3.5dp
lv_gravity 设置LabelView方向
lv_fill_triangle 设置是否填充三角区域,默认false
lv_fill_size 设置是否浮嵌显示大小

实际使用代码

######使用空边标签时

 <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/bag"
        android:orientation="vertical"
        android:gravity="center">
    </View>
    <com.xiaochao.lclablelibrary.LabelView
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_gravity="bottom"
        lv:lv_background_color="#FF6666"
        lv:lv_gravity="BOTTOM_LEFT"
        lv:lv_text="十年经验"
        lv:lv_text_size="8dp"
        />
 </FrameLayout>

#####使用浮嵌标签时

要注意容器的android:layout_margin="3dp"必须和lv:lv_fill_size="3"值一样

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="3dp"
        android:background="@drawable/bag"
        android:orientation="vertical"
        android:gravity="center">
    </View>
    <com.xiaochao.lclablelibrary.LabelView
        android:layout_width="60dp"
        android:layout_height="60dp"
        lv:lv_background_color="#FF6666"
        lv:lv_gravity="TOP_LEFT"
        lv:lv_text="十年经验"
        lv:lv_text_size="8dp"
        lv:lv_fill_size="3"
        />
</FrameLayout>
上一篇:Andbase应用开发框架+常用控件汇总-侧滑、上下拉加载、tab、各种
下一篇:Android一个把文字转化为路径动画然后展现出来的自定义控件

相关内容

热门推荐