Bootstrap切换按钮出现但不起作用且Navbar不会崩溃

时间:2017-07-10 01:16:29

标签: twitter-bootstrap

Bootstrap切换按钮出现,但不起作用且Navbar由于某种原因不会崩溃。我不确定为什么它不起作用。我在下面发布了我的代码。感谢您的任何建议。

class RobotoTextView(context: Context?, attrs: AttributeSet?) : AppCompatTextView(context, attrs) {
    init {
        val typeface = Typeface.createFromAsset(getContext().assets, "font/roboto.ttf")
        if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB ||
                android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.HONEYCOMB_MR2) {
            setTypeface(typeface)
        }
    }
}

0 个答案:

没有答案