Android:如何显示此栏并在工具栏中添加图标?

时间:2016-05-26 10:47:14

标签: android android-toolbar

您好为什么我的活动中的这个栏被隐藏了? 这是我的截图

enter image description here

我该如何显示?并在工具栏中添加图标和标题

这是我的活动users.xml

    <?xml version="1.0" encoding="utf-8"?>
<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/tools"
    android:id="@+id/scrollView"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <include
            layout="@layout/toolbar"
            android:id="@+id/tb">
        </include>
            <android.support.v7.widget.CardView
                android:id="@+id/cardview1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                card_view:cardBackgroundColor="@android:color/white"
                card_view:cardCornerRadius="8dp"
                card_view:cardElevation="20dp"
                android:layout_marginTop="10dp"
                android:layout_marginRight="10dp"
                android:layout_marginLeft="10dp">
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">
                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:gravity="center_vertical"
                        android:background="@color/lignt_blue"
                        android:paddingLeft="25dp">
    ....

这是我的活动users.java

public class Users  extends AppCompatActivity {
    private TextView editName;
    private ImageView imageView1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.users);
    Intent intent = getIntent();
    String ref2 = intent.getStringExtra("ref");
    Toolbar myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
    setSupportActionBar(myToolbar);
        editName = (TextView) findViewById(R.id.editName);
        imageView1= (ImageView)findViewById(R.id.imageView1);
    }

这是我的toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto" />

1 个答案:

答案 0 :(得分:0)

根据我的研究,你必须完全全屏才能改变它。

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

使用以下代码删除或添加状态/电源栏(它的名称让我逃脱):

隐藏栏:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

或者这显示栏:

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

如果这不是问题,那么通过评论的外观,您的状态栏将采用colorPrimaryDark的颜色。

要解决此问题,我会尝试在styles.xml中使用它:

<item name="android:colorPrimaryDark">@color/brand_color_dark</item>

OR:

将其添加到styles.xml

<item name="colorPrimary">@color/yourColor</item>
<item name="colorPrimaryDark">@color/yourColor</item>

然后从XML文件中删除此代码:

<item name="android:windowTranslucentStatus">true</item> 
<item name="android:fitsSystemWindows">true</item>

尝试所有这些方法,如果他们解决了您的问题,请告诉我。