#java #android #android-toolbar
#java #Android #android-панель инструментов
Вопрос:
Просто знайте, что listview на изображении сгенерирован фрагментом. Но я не думаю, что это должно влиять на макет панели инструментов. Вот код для макета —
<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>
И вот действие, соответствующее приведенному выше макету —
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
}
}
Я проверил большинство ответов, связанных с панелью инструментов пробелов, по переполнению стека, но ничего не работает. Возможно, моя проблема в другом.
ПРАВКА 1
Вот моя основная деятельность. Он также загружает список фрагментов на пользовательской панели инструментов ha. Но здесь такого пробела нет —
@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 в обоих действиях, но это не должно иметь никакого отношения к toolbar. Кто-нибудь может сказать, почему это происходит не в MainActivity, а в другом activity.
Комментарии:
1. какого цвета
croctooth
это тот сероватый цвет?2. Пожалуйста, поделитесь своим основным макетом деятельности .
3. сделайте относительную компоновку линейной компоновкой
4. Попробуйте удалить «android: minHeight=»?attr/actionBarSize»». Я думаю, что это может быть причиной этого. @sakib
5. да, кротозуб имеет светло-сероватый цвет. Ввели основное действие. Отсутствие относительного layuput не решает проблему, и удаление android:minHeight=»?attr/ actionBarSize не решает ее.
Ответ №1:
На самом деле проблема была не в панели инструментов, а в строке состояния. В качестве родительского элемента требовался 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>