Android:自定义layout 无法显示
程序员文章站
2022-06-16 13:18:03
布局代码引入自定义layout如下所示:
布局代码引入自定义layout如下所示:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textview_description"
android:orientation="vertical">
<com.change.demox.views.edittext.widget.InputEditTextView
android:id="@+id/user_name"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="20dp" />
<com.change.demox.views.edittext.widget.InputEditTextView
android:id="@+id/phone_number"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="20dp" />
</LinearLayout>
在运行时无法显示,用UI AutoMator抓取看,自定义控件绘制上去了,但是没有效果:
如果是这种情况,就要看自定义layout是否是利用inflate的方式动态加载出来的,原写法:
view = View.inflate(context, R.layout.common_edit_text_with_error_message, null)
改为:
view = View.inflate(context, R.layout.common_edit_text_with_error_message, this)
就能看到成功绘制了。
本文地址:https://blog.csdn.net/Crystal_xing/article/details/108845180
推荐阅读
-
Android自定义ViewGroup实现堆叠头像的点赞Layout
-
Android自定义多节点进度条显示的实现代码(附源码)
-
Android自定义View实现仿驾考宝典显示分数效果(收藏)
-
Android自定义View设定到FrameLayout布局中实现多组件显示的方法 分享
-
Android 自定义 Toast 显示时间
-
Android 自定义标题栏 显示网页加载进度的方法实例
-
Android布局——Preference自定义layout的方法
-
Android开发ImageView图片无法显示解决过程
-
Android自定义多节点进度条显示的实现代码(附源码)
-
Android自定义格式显示Button的布局思路