发布网友 发布时间:2022-04-30 23:39
共1个回答
热心网友 时间:2022-06-20 14:52
自定义控件,实质是重写某个控件的方法和属性,同时也继承父控件的方法和属性,比如内边距,设置自定义控件内边距的方法:
在xml布局文件中使用标签:
android:padding="",
android:paddingLeft="",
android:paddingTop="",
android:bottom=""
如果想要设置外边距,使用下面标签:
android:layout_margin="",android:layout_marginLeft,android:layout_marginRight,android:layout_marginTop,android:layout_marginBottom