我创建了一个继承自 TextView 的类,所以现在当我必须使用时,我实现:
<cdz.chapitreUn.preums.BoldTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
tools:context=".PreumsActivity" />
在xml文件上。问题是包含类的路径是一个很长的语法,无论如何(别名或其他东西)我只能写:
<BoldTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
tools:context=".PreumsActivity" />
谢谢