我正在开发一款采用材料设计的应用。
我在活动中添加了一个工具栏&我在这里设置了它的主题:app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
,但是在运行之后我仍然会得到一个黑暗的主题。
这是我的activity_about.xml文件的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.abc.xyz.AboutActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</RelativeLayout>
这是AboutActivity.java文件的代码:
public class AboutActivity extends AppCompatActivity {
Toolbar toolbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_about);
SpannableString s = new SpannableString("About");
s.setSpan(new TypefaceSpan(this, "Pacifico.ttf"), 0, s.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setTitle(s);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_about, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
这是styles.xml文件的代码:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
我是材料设计的新手。因此不知道该怎么做。
请告诉我。
我是StackOverflow的新手,所以请合作。
提前致谢。
答案 0 :(得分:0)
您必须更改xml AppTheme 。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:theme="@style/ThemeOverlay.Material.Light.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
答案 1 :(得分:0)
您必须在xml文件中制作工具栏主题
在styles.xml中
<style name="ToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
<item name="colorPrimary">@color/seccolor</item>
<item name="colorControlHighlight">@color/md_white_1000</item>
</style>
现在在您的主xml文件中使用它
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="?attr/colorPrimaryDark"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Light"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:layout_gravity="center_horizontal|top" />
它应该工作。
答案 2 :(得分:0)
app:popupTheme
属性用于菜单弹出窗口以及覆盖工具栏的所有其他弹出窗口。
可能是您的工具栏未获得主题,因为您尚未在AndroidManifest.xml
中引用正确的主题。
确保它是这样的:
<manifest>
<application
...
android:theme="@style/MyMaterialTheme.Base">
<activity/>
...
</application>
</manifest>
该主题是您应用中所有活动的主题。您甚至可以将其应用于个人活动。
答案 3 :(得分:0)
在styles.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
主要主题的父级是
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
也在您的MyMaterialTheme.Base
中,父母为
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
从两者中删除.DarkActionBar
会有所帮助。然后,您可以为上面的答案中提到的工具栏添加样式。
希望它有所帮助。
答案 4 :(得分:0)
这里的问题是我没有为工具栏应用主题。
我通过将这一行<style type="text/css">
body{
background: url(img/phantom410.jpg); repeat-y;
background-size:cover;
background-color:black;
}
</style>
添加到xml文件中的工具栏小部件来修复此问题。
感谢所有人的努力!