我的应用程序在运行时向主活动添加带有值的片段,但我需要能够更改屏幕方向而不会丢失这些值。主要问题是我向清单工作添加了android:configChanges="orientation|screenSize"
,但是在应用程序顶部添加了大量额外空间,因此在第一次更改后的任意一个方向上,大约四分之一的屏幕无法访问白色空间。
activity_main.xml中
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="50dp"
android:fitsSystemWindows="true"
android:theme="@style/MyAppTheme">
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
content_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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="match_parent"
android:layout_marginTop="25dp"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="60dp"
android:layout_marginTop="8dp">
<TextView
android:id="@+id/manu_label"
android:layout_width="wrap_content"
android:layout_height="20dp"
android:text="Manufacturer:"
android:textSize="12sp"
android:gravity="center"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"/>
<Spinner
android:id="@+id/manu_spinner"
android:theme="@style/SpinnerStyle"
android:layout_width="80dp"
android:layout_height="20dp"
android:dropDownWidth="150dp"
android:layout_marginLeft="8dp"
android:background="@drawable/cell_background"
android:layout_toRightOf="@id/manu_label"
android:layout_alignParentTop="true">
</Spinner>
<LinearLayout
android:id="@+id/panels_container"
android:orientation="vertical"
android:layout_below="@id/manu_spinner"
android:layout_alignParentLeft="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
除了将片段添加到线性布局之外,我的java代码不会操纵视图:
private View.OnClickListener cableListener = new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentTransaction ft = manager.beginTransaction();
PanelsFragment frag = PanelsFragment.newInstance();
cables.add(frag);
ft.add(R.id.panels_container, frag, Integer.toString(trans.indexOf(frag)));
ft.commit();
}
};
有没有办法阻止我的应用栏和滚动视图之间的额外空间,还是我需要一个不同的策略?我确实尝试重写onSaveInstanceState和onRestoreInstanceState,但我的方法据说需要比我的最小值14更高的API。任何建议都将受到赞赏。
编辑:由于项目的性质,我无法提供问题的图片。当应用程序首次启动时,标签和微调器之间几乎没有空间与#34; manu&#34; id和应用栏。但是,当屏幕从纵向移动到横向时,应用栏与标签和微调器之间至少有60dp的无法访问的空间。我注意到内容视图需要25dp的上边距,否则其内容在应用栏后面开始。答案 0 :(得分:0)
通过在activity_main.xml中指定内容视图的高度,宽度和边距意外地解决了我的问题:
<include
layout="@layout/content_main"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_marginTop="0dp" />