我想像这样做动作吧..
请帮我这样做我尝试喜欢这个但是我不能得到它请帮我完整的教程。我是android的新手。
这是Activity
代码
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
}
}
答案 0 :(得分:2)
修改强>
从中使用toolbar
布局并复制styles.xml
Styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MyTheme">
<!-- Customize your theme here. -->
</style>
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- customize the color palette -->
<item name="colorPrimary">@color/color_primary</item>
<item name="colorPrimaryDark">@color/color_primary_dark</item>
<item name="colorAccent">@color/color_accent</item>
</style>
</resources>
toolbar.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:elevation="4dp"
android:id="@+id/tool_bar"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:background="?attr/colorPrimary"
android:layout_height="?attr/actionBarSize">
</android.support.v7.widget.Toolbar>