我正在为我的应用创建一个包含Twitter帐户的登录页面。当我构建我的项目时会发生上述错误。
值/ strings.xml中
<style name="Base.TextAppearance.AppCompat.Medium">
<item name="android:textSize">@dimen/abc_text_size_medium_material</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style>
答案 0 :(得分:3)
<强>不强>
values/strings.xml
错误的路径。请将此设置在样式部分。
样式在XML资源中定义,该资源与XML分开 指定布局。此XML文件位于res / values /下 项目的目录,并将作为根节点 这对于样式文件是必需的。
http://www.postgresql.org/docs/9.2/static/sql-createview.html
答案 1 :(得分:1)
这是values / string.xml
<string name="activity_name">Home</string>
<string name="navigation_drawer_open">Open navigation drawer</string>
<string name="navigation_drawer_close">Close navigation drawer</string>
这是values / style.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="toolbarStyle">@style/Custom.Widget.Toolbar</item>
</style>
两者都是不同的东西
答案 2 :(得分:0)
我收到此错误并通过这种方式修复:问题是 style.xml 文件中没有任何值的某些样式项,如下所示;只需评论或删除该行: 这里没有任何内容