我将相同的XML代码复制到活动中,一切都很好。 但是在这种情况下,这种情况确实发生了,显示器在模拟器上出现了一些问题,我认为整个显示器会向下移动一点。 下面的Java代码与此片段有关。 activity_liuruiquan是此片段的名称。 我认为关键问题是当我使用嵌套片段时,因此infor会希望在此布局(图片)的顶部变白
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background1"
android:baselineAligned="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="400dp"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/applogo"
android:layout_width="178dp"
android:layout_height="178dp"
android:contentDescription="@string/todo"
android:paddingStart="30dp"
android:paddingEnd="30dp"
android:src="@drawable/applogo" />
<TextView
android:id="@+id/guidedog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="start"
android:text="@string/guidedog"
android:textColor="@color/colorAccent"
android:textSize="25sp" />
</LinearLayout>
</LinearLayout>
public class Liu extends Fragment {
View LiuView;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
LiuView = inflater.inflate(R.layout.activity_liuruiquan, container, false);
return LiuView;
}
}
public void replaceFragment(Fragment somefragment) {
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.add(R.id.fragment_container, somefragment);
transaction.addToBackStack("1");
transaction.commitAllowingStateLoss();
}
答案 0 :(得分:0)
您在视图上使用的是固定尺寸,这会使您的屏幕无法对所有屏幕尺寸做出响应,这是因为不同的手机具有不同的屏幕尺寸。
如果您希望每个屏幕的布局都相同,请使用ConstraintLayout / Relative layout,并且不要在视图上使用固定大小。
还-请避免使用嵌套视图,因为这确实会使布局变慢(根据您所拥有的嵌套视图的数量,布局会越来越慢)
这是一个使用constraintLayout的简单示例:
<androidx.constraintlayout.widget.ConstraintLayout 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/constrainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:srcCompat="@tools:sample/avatars[12]" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/guideline3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView3" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />
它看起来像这样:
注意-这只是我提供的示例,您可以根据需要更改布局。 ConstraintLayout确实是一种舒适的布局,我建议学习它。
答案 1 :(得分:0)
从XML代码中可以看出,您已经为布局指定了固定大小。除非需要,否则切勿使用固定大小的布局,否则可能会因设备而异。您可以使用布局权重。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/applogo"
android:layout_width="178dp"
android:layout_height="178dp"
android:paddingStart="30dp"
android:paddingEnd="30dp"
android:src="@drawable/dummy_upasarga_logo" />
<TextView
android:id="@+id/guidedog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="start"
android:text="Hello"
android:textColor="@color/colorAccent"
android:textSize="25sp" />
</LinearLayout>
</RelativeLayout>
在您的情况下,请使用RelativeLayout。