1、文字过多,在末尾以省略号结尾
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="1111111"
android:textSize="20sp"
android:ellipsize="end"
android:maxLines="1"/>
2、给自定义控件添加自定义属性
在res目录下,values中styles.xml文件中定义declare-styleable
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<!--是给自定义控件添加自定义属性用的。-->
<declare-styleable name="TagsLayout">
<attr name="tagVerticalSpace" format="dimension"></attr>
<attr name="tagHorizontalSpace" format="dimension"></attr>
</declare-styleable>
</resources>