我想在我的主要活动中添加一个片段,所以我有这个片段类(TitleFragment.java):
package com.myapp.app1;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class TitleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_title, container, false);
}
}
接下来是我的片段的实际内容,包含在fragment_title.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/logo_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo_main"
android:contentDescription="@string/app_name"
android:scaleType="fitStart"
android:adjustViewBounds="true" />
</LinearLayout>
在我activity_main.xml
的活动的常规内容中,我有这个片段:
<fragment
android:name="com.myapp.app1.TitleFragment"
android:id="@+id/title_fragment"
android:layout_width="0dp"
android:layout_height="match_parent" />
这种方法是创建片段的正确方法吗?我的应用程序崩溃了,LogCat 似乎表明它与片段视图膨胀有关,但我不确定。
顺便说一句,这个片段的原因是每个页面上都存在应用程序徽标(图像和一些可更新的文本),这是做类似事情的好方法吗?对不起我的新手问题。