全屏DialogFragment与StatusBar重叠
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全屏DialogFragment与StatusBar重叠相关的知识,希望对你有一定的参考价值。
我用official Guide创建了一个全屏对话框
问题是,我的工具栏与状态栏重叠,我无法弄清楚如何解决这个问题。
DialogFragment
public class CreateAccountDialogFragment extends BaseDialogFragment {
@Inject
CreateAccountViewModel viewModel;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
//InjectDependencies....
View rootView = createDataBinding(inflater, container);
createToolbar(rootView);
return rootView;
}
private View createDataBinding(LayoutInflater inflater, ViewGroup container) {
CreateAccountDialogFragmentBinding binding =
DataBindingUtil.inflate(inflater, R.layout.create_account_dialog_fragment, container, false);
binding.setViewModel(viewModel);
return binding.getRoot();
}
private void createToolbar(View rootView) {
Toolbar toolbar = (Toolbar) rootView.findViewById(R.id.toolbar);
// Set an OnMenuItemClickListener to handle menu item clicks
toolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
if (item.getItemId() == R.id.action_save) {
viewModel.createAccount();
}
return true;
}
});
// Inflate a menu to be displayed in the toolbar
toolbar.inflateMenu(R.menu.create_account_menu);
toolbar.setTitle(R.string.create_account);
toolbar.setNavigationIcon(R.drawable.ic_cancel);
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialogFragment.dismiss();
}
});
}
}
布局
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable
name="viewModel"
type="org.altoware.weity.viewmodels.CreateAccountViewModel"/>
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
<include layout="@layout/toolbar"/>
<LinearLayout
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical">
<org.altoware.weity.views.BindableEditText
android:id="@+id/editTextUsername"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:addTextChangedListener="@{viewModel.onUsernameChanged}"
android:hint="Username"
android:singleLine="true"/>
<org.altoware.weity.views.BindableEditText
android:id="@+id/editTextPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:addTextChangedListener="@{viewModel.onPasswordChanged}"
android:hint="Password"
android:inputType="textPassword"
android:singleLine="true"/>
</LinearLayout>
</RelativeLayout>
工具栏
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout 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="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
tools:showIn="@layout/activity_login">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.AppBarLayout>
活动创建对话框
@Subscribe
public void showNewAccountDialog(OttoMessages.Login.ShowNewAccountDialog evt) {
FragmentManager fragmentManager = getSupportFragmentManager();
CreateAccountDialogFragment newFragment =
new CreateAccountDialogFragment();
boolean isLargeLayout = false;
if (isLargeLayout) {
newFragment.show(fragmentManager, "dialog");
} else {
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.add(android.R.id.content, newFragment)
.addToBackStack(null).commit();
}
}
编辑
问题出在transaction.add(containerId,fragment)部分。
你把它设置为:transaction.add(android.R.id.content, fragment)
,它是导致重叠的android.R.id.content的设置。
而是将其设置为调用活动中父级内容框架的id。
例如,在我的代码中,主要活动父布局是DrawerLayout,id为drawer_layout,所以我的修复是
MyDialogFragment fragment = new MyDialogFragment ();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.add(R.id.drawer_layout, frag)
.addToBackStack(null).commit();
删除我发现的StatusBar
的透明度颜色后,现在可以添加填充而不会使状态栏变为白色。
我的DialogFragment的RelativeLayout
现在看起来像这样。
<RelativeLayout
android:paddingTop="24dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
应用程序/ SRC /主/ RES /值-V21 / styles.xml
<resources>>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<!-- REMOVE THIS LINE
<item name="android:statusBarColor">@android:color/transparent</item>
-->
</style>
</resources>
警告 我没有在Nexus 5以外的其他设备上测试过这个。
如果您希望全屏显示DialogFragment并且还希望状态栏具有您自己的颜色,则可以在DialogFragment上的onCreate()方法中添加它。
setStyle(DialogFragment.STYLE_NORMAL, android.R.style.Theme_DeviceDefault_Light_NoActionBar_Fullscreen);
您还可以在onCreateView方法中添加以下代码以获取状态栏颜色。
getDialog().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getDialog().getWindow().setStatusBarColor(getResources().getColor(R.color.colorPrimaryDark));
以上是关于全屏DialogFragment与StatusBar重叠的主要内容,如果未能解决你的问题,请参考以下文章
Android开发 - 设置DialogFragment全屏显示
Android开发 - 设置DialogFragment全屏显示
用全屏DialogFragment代替Activity,结合ViewPager展示图片
活动接收全屏半透明DialogFragment背后的触摸事件