工具栏和状态栏之间的白色 space
white space between toolbar and status bar
就知道图像中的列表视图是片段生成的。但我认为这不会干扰工具栏的布局。这是布局代码 -
<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:id="@+id/fragment_songlistview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/croctooth"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:context="com.shaikhsakib.sounddemo.SongActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.Dark"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<ListView
android:id="@+id/fragmentSongListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar2" />
</RelativeLayout>
这里是上面布局对应的 activity -
package com.shaikhsakib.sounddemo;
import android.app.ActionBar;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
public class SongActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_song);
loadFragment();
Toolbar toolbar2 = (Toolbar) findViewById(R.id.toolbar2);
setSupportActionBar(toolbar2);
}
private void loadFragment() {
// create a FragmentManager
FragmentManager fm;
fm = getFragmentManager();
// create a FragmentTransaction to begin the transaction and replace the Fragment
FragmentTransaction fragmentTransaction = fm.beginTransaction();
// replace the FrameLayout with new Fragment
SongListFragment slv = new SongListFragment();
fragmentTransaction.replace(R.id.songFrameLayout, slv);
fragmentTransaction.commit(); // save the changes
}
}
我检查了 Stack Overflow 上大多数与白色 space 工具栏相关的答案,但没有任何效果。也许我的问题不一样。
编辑 1
这是我的主要 Activity。它还加载一个片段列表视图和一个自定义工具栏。但是这里没有这样的白色space -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loadFragment();
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
private void loadFragment() {
// create a FragmentManager
FragmentManager fm;
fm = getFragmentManager();
// create a FragmentTransaction to begin the transaction and replace the Fragment
FragmentTransaction fragmentTransaction = fm.beginTransaction();
// replace the FrameLayout with new Fragment
PLayListFragment flv = new PLayListFragment();
fragmentTransaction.replace(R.id.frameLayout, flv);
fragmentTransaction.commit(); // save the changes
}
}
另请注意,我在两个活动中都替换了相同的 R.id.frameLayout,但这与工具栏无关。任何人都可以告诉为什么它没有发生在 MainActivity 而在其他 activity.
实际上问题不在于工具栏,而在于状态栏。它需要 CoordinatorLayout 而不是 RelativeLayout 作为父级。所以我所要做的就是将相对布局作为 CoordinatorLayout 的子布局并传递一个属性,如 android:fitsSystemWindows="true"。那解决了问题。
这是解决方案 -
<android.support.design.widget.CoordinatorLayout 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="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:fitsSystemWindows="true"
android:background="@color/croctooth"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:context="com.shaikhsakib.sounddemo.SongActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@color/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<ListView
android:id="@+id/fragmentSongListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar2" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
就知道图像中的列表视图是片段生成的。但我认为这不会干扰工具栏的布局。这是布局代码 -
<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:id="@+id/fragment_songlistview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/croctooth"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:context="com.shaikhsakib.sounddemo.SongActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.Dark"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<ListView
android:id="@+id/fragmentSongListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar2" />
</RelativeLayout>
这里是上面布局对应的 activity -
package com.shaikhsakib.sounddemo;
import android.app.ActionBar;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
public class SongActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_song);
loadFragment();
Toolbar toolbar2 = (Toolbar) findViewById(R.id.toolbar2);
setSupportActionBar(toolbar2);
}
private void loadFragment() {
// create a FragmentManager
FragmentManager fm;
fm = getFragmentManager();
// create a FragmentTransaction to begin the transaction and replace the Fragment
FragmentTransaction fragmentTransaction = fm.beginTransaction();
// replace the FrameLayout with new Fragment
SongListFragment slv = new SongListFragment();
fragmentTransaction.replace(R.id.songFrameLayout, slv);
fragmentTransaction.commit(); // save the changes
}
}
我检查了 Stack Overflow 上大多数与白色 space 工具栏相关的答案,但没有任何效果。也许我的问题不一样。
编辑 1
这是我的主要 Activity。它还加载一个片段列表视图和一个自定义工具栏。但是这里没有这样的白色space -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loadFragment();
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
private void loadFragment() {
// create a FragmentManager
FragmentManager fm;
fm = getFragmentManager();
// create a FragmentTransaction to begin the transaction and replace the Fragment
FragmentTransaction fragmentTransaction = fm.beginTransaction();
// replace the FrameLayout with new Fragment
PLayListFragment flv = new PLayListFragment();
fragmentTransaction.replace(R.id.frameLayout, flv);
fragmentTransaction.commit(); // save the changes
}
}
另请注意,我在两个活动中都替换了相同的 R.id.frameLayout,但这与工具栏无关。任何人都可以告诉为什么它没有发生在 MainActivity 而在其他 activity.
实际上问题不在于工具栏,而在于状态栏。它需要 CoordinatorLayout 而不是 RelativeLayout 作为父级。所以我所要做的就是将相对布局作为 CoordinatorLayout 的子布局并传递一个属性,如 android:fitsSystemWindows="true"。那解决了问题。
这是解决方案 -
<android.support.design.widget.CoordinatorLayout 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="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:fitsSystemWindows="true"
android:background="@color/croctooth"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:context="com.shaikhsakib.sounddemo.SongActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@color/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<ListView
android:id="@+id/fragmentSongListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar2" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>