我创建了customtextview,如下所示
public class CustomTextView extends AppCompatTextView {
public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
// im changing font family here .ttf files
}
}
.
<com.android.app.CustomTextView
android:id="@+id/view”
/>
两者有什么区别
这
CustomTextView textView = findViewbyId(R.id.view);
还有这个
TextView textView = findViewbyId(R.id.view);
当我把这个 TextView textView = findViewbyId(R.id.view);
ide运行时没有抛出错误。为什么?谢谢!
1条答案
按热度按时间nimxete21#
现实生活中的比较:
当你学会驾驶手动变速器汽车时,你几乎可以驾驶任何一辆手动变速器汽车。想象一下,如果你必须学会驾驶你遇到的每一种不同型号的汽车,那会是多么糟糕。
源(+)