我正在尝试按照tutorial来创建材质设计工具栏。我在第7步,我的活动应该有一个颜色工具栏,但我的应用程序看起来像
供参考,这里是我的style.xml,color.xml,tool_bar.xml文件
style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:colorPrimary">@color/ColorPrimary</item>
<item name="android:colorPrimaryDark">@color/ColorPrimaryDark</item>
<!-- Customize your theme here. -->
</style>
</resources>
在同一个文件夹中还有另一个style.xml,旁边有(21)。我没有对它做任何改动。
color.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ColorPrimary">#FF5722</color>
<color name="ColorPrimaryDark">#E64A19</color>
</resources>
tool_bar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/ColorPrimary"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
更新 如果我在stylev21.xml文件中进行更改,我可以在教程中看到我的应用程序看起来像什么。但是如果保持style-v21.xml不变并在style.xml中进行更改,我看不到这些更改。我要编辑哪种样式* .xml文件?
答案 0 :(得分:1)
拥有不同styles.xml的目的是您可以添加特定于Android版本的更改。但是,您需要在两个文件中保持相同的更改。
如果您在具有Android 5.0版棒棒糖的设备上测试您的应用程序,则v21 / styles.xml中定义的样式将反映在您的应用程序中。另外常见的styles.xml
如果您想要与教程中显示的输出相同,那么我建议您进行一些更改。
编辑您的activity_main.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
P.S。我刚刚从RelativeLayout
删除了保证金。
styles.xml
并定义不包含操作栏的样式。例如。 "Theme.AppCompat.Light.NoActionBar"
完成这些更改后,您的应用将在所有设备上完美运行。 我希望它有所帮助。
答案 1 :(得分:0)
您的图片上下文菜单有三个点,它仍显示操作栏。您必须使用以下行才能使工具栏生效
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.tool_bar); // Attaching the layout to the toolbar object
setSupportActionBar(toolbar); // Setting toolbar as the ActionBar with setSupportActionBar() call
}
答案 2 :(得分:0)
将您的主题更改为Theme.AppCompat.Light.DarkActionBar
,而不是NoActionBar
。
然后您不需要在布局XML文件中添加它
同时将android:colorPrimary
更改为colorPrimary
(取消android:
),将android:colorPrimaryDark
更改为colorPrimaryDark
。
答案 3 :(得分:0)
将 style.xml 设为像这样 -
def productSize = ProductSize.findAllById(1);
def productQuantities = ProductQuantity.findAllByProductSize(productSize)
原因 - AppCompat搜索没有“android:”的文本