控件属性

TextView
singleLine 为true时,表示text只能单行显示
ellipsize = “end” 设置文本超过控件宽度的时候,文本的缩略方式,end表示在尾部进行缩略
paddingLeft 表示文字到控件 左边的距离。以此类推

<TextView  android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:ellipsize="end" android:paddingLeft="10dp" android:paddingRight="15dp" android:paddingTop="5dp" android:paddingBottom="20dp"/>
 1. ImageView  scaleType="fitXY"表示让这张图填充整个控件的大小
</ImageView  android:scaleType="fitXY" />

你可能感兴趣的:(控件)