如何在android studio操作栏中编写文本?我想在我的操作栏上写一个文本两个单独的文本,就像whatsapp一样。我看到了我给出的代码,但它并没有告诉我如何做到这一点。
操作栏:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="59dp"
android:background="?attr/colorPrimaryDark"
android:orientation="vertical">
</LinearLayout>
</FrameLayout>
答案 0 :(得分:0)
使用主题 Theme.AppCompat.NoActionBar ...
在您的布局中包括 -
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
您的活动必须如下 -
public class MyActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
Toolbar myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
setSupportActionBar(myToolbar);
}
}