我正在尝试基于Fragments和Navigation组件构建应用程序。我认为下面的示例代码是绝对最小值。
我的活动的布局如下:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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"
tools:context=".MainActivity">
<fragment
android:id="@+id/fragment_host"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
</FrameLayout>
相应的活动类如下所示。请注意,到目前为止,我还没有使用任何工具栏,底部导航或菜单。
public class MainActivity extends AppCompatActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
要显示的起始片段只是一个ConstraintLayout,它定义了一些常规按钮和一个浮动操作按钮。
该片段的实现如下:
public class FragmentMainScreen extends Fragment
{
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)
{
return inflater.inflate(R.layout.fragment_main_screen, container, false);
}
}
最后,导航图是这样:
<?xml version="1.0" encoding="utf-8"?>
<navigation 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/nav_graph"
app:startDestination="@id/destination_main">
<fragment
android:id="@+id/destination_main"
android:name="com.stmoebius.zz.ui.FragmentMainScreen"
android:label="@string/main_screen_title"
tools:layout="@layout/fragment_main_screen" />
</navigation>
一切都可以构建和执行,但是片段没有显示(除了标签)。我想念什么?
答案 0 :(得分:1)
您将片段的宽度和高度设置为0dp
<FrameLayout
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"
tools:context=".MainActivity">
<fragment
android:id="@+id/fragment_host"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
</FrameLayout>