我最近开始将旧应用程序迁移到材料设计,并决定使用工具栏而不是操作栏进行更多自定义。我尝试使用以下代码将工具栏添加到一个活动中:
layout.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize" >
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="@drawable/background_tabs" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tabs"
tools:context=".MainActivity" />
</RelativeLayout>
MainActivity.java
public class MainActivity extends AppCompatActivity {
private ViewPager pager;
private MyPagerAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MyApp.tracker().send(new HitBuilders.EventBuilder("ui", "open")
.setLabel("main")
.build());
// Set a ToolBar to replace the ActionBar.
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
}
style.xml
<style name="MyTheme.Base" parent="@style/Theme.AppCompat.Light.NoActionBar">
<!-- your app branding color for the app bar -->
<item name="colorPrimary">@color/redLatest</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">@color/redLatest_dark</item>
<item name="colorAccent">@color/redLatest</item>
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="actionDropDownStyle">@style/MyActionBarDropDown</item>
</style>
现在,当我运行上面的代码时,我没有在我的活动中获得操作栏,这很好,但是工具栏也没有出现哪个很奇怪。我知道我可能会犯一些我无法找到的愚蠢的错误。请帮助
答案 0 :(得分:0)
您已在RelativeLayout
中添加了视图,因此您应指定它们的位置。由于您尚未为TabLayout
指定,Tablayout
与Toolbar
重叠。只需在android:layout_below="@id/toolbar"
中添加TabLayout
。
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_below="@id/toolbar"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="@drawable/background_tabs" />
答案 1 :(得分:0)
使用此
CL-USER 195 > (defparameter size 2)
SIZE
CL-USER 196 > (print size)
2
2