网上已经有解决办法了,这里我只是把它用图文的方式写一下。
请参考 http://blog.csdn.net/romaticxiaoyu/article/details/7241512
据说这几个错误都可以
Failed to find style 'textViewStyle' in current theme
Failed to find style 'editTextStyle' in current theme
Failed to find style 'buttonStyle' in current theme
现象:
图文解决办法:
layout预览界面(Graphic Layout),右上角有个Theme的选择项,默认为notitle,根据喜好随意设定值,我们这里设定为android以前默认的Theme.black.
第一步
第二步
成功了
- 大小: 54.6 KB
- 大小: 222.4 KB
- 大小: 144 KB
- 大小: 49.6 KB
分享到:
相关推荐
<item name="android:editTextStyle">@style/AppTheme.EditText </style> ``` 对于自定义组件,你需要在组件类中手动设置字体: ```java public class CustomTextView extends AppCompatTextView { public ...
Android Studio 在xml文件中设置界面布局1、xml文件中给输入框editText修改下划线颜色2、设置button按钮为...在里面添加一个新的样式,起名为 editTextStyle,添加代码如下 colorControlActivated 设置控件 选中时 下
- 使用XML中的`style`标签定义样式,并在EditText中通过`android:theme`引用。 - 在`styles.xml`文件中创建自定义主题,修改`editTextStyle`属性来改变默认样式。 - 通过`android:drawableLeft`/`android:...
<style name="EditTextStyle" parent="Widget.AppCompat.EditText"> <item name="android:textColor">@color/text_color <item name="android:background">@drawable/edittext_background ...
this(context, attrs, android.R.attr.editTextStyle); } public ClearEditText(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); // 初始化清除按钮的...
- 在使用`android:background`属性时,确保不要与主题中的`android:editTextStyle`冲突。 - 如果需要动态改变边框,可以使用`editText1.setBackground()`方法。 - 边框效果可能会受到设备屏幕密度的影响,可能...
this(context, attrs, android.R.attr.editTextStyle); } public ClearableEditText(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(context, attrs);...
this(context, attrs, android.R.attr.editTextStyle); } public ClearEditText(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); mDensity = getResources()...
`this(context, attrs, android.R.attr.editTextStyle)`这一行代码就是确保从XML中加载正确的默认样式。 总的来说,这个自定义`ImgEditText`组件提供了更丰富的交互体验,可以方便地在Android应用中实现类似简书...
this(context, attrs, android.R.attr.editTextStyle); } 三、设置 EditText 的样式 在 init() 方法中,我们可以设置自己的 EditText 的样式,添加自己想要的样式。例如,我们可以设置 EditText 的背景颜色、...
this(context, attrs, android.R.attr.editTextStyle); } public ClearEditText(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); initWedgits(); } private void ...
this(context, attrs, android.R.attr.editTextStyle); } public ClearEditText(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(); } private void init() ...