你好我在屏幕正常时出现问题,Android手机上的图像看起来还不错,但是当我转移到横向时它会占据导航标题栏的空间。 此外,当我旋转手机,它带我回到家或主要活动我不知道那是什么。以下是Main-fragment.XML
<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"
tools:context="com.example.fred.yeno.MainFragment">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/puAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/dice" />
</LinearLayout>
</LinearLayout>
的Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fred.yeu">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
以下是MainFragment.java
package com.example.fred.yenu;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* A simple {@link Fragment} subclass.
*/
public class MainFragment extends Fragment {
public MainFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_main, container, false);
}
}
答案 0 :(得分:0)
我认为您没有为Toolbar
定义Fragment
,并且您不知道如何以及何时使用Fragment
。
我建议你下载Android工作室(如果你有,请在最新版本更新SDK和IDE)。
在那之后用Blank Activity
创建一个新项目,然后从那里开始投射。
如果您需要/需要,可以在Fragments
添加1,2或N Activity
。
我建议你阅读下面链接给你的官方文件:
Build dynamic UI with Fragments
如果您阅读本文档,您就拥有了启动应用程序的基础知识,您可以看到已消失的问题。