如何在Android中为片段添加标题

时间:2017-04-17 18:13:54

标签: java android android-layout android-fragments

在AndroidStudio中,我选择了" New-> Fragment-> Fragment(List)"创建项目列表。它工作正常并显示所有项目;但是,我想在顶部有一个标题。

如果我将另一个TextView添加到&#34; fragment_item_list.xml&#34;文件,然后标题出现在列表中的所有项目中。从其他问题我想,如果我创建另一个LinearLayout xml布局文件(类似&#34; list_header.xml&#34;)并在其中放置TextView,我可以使用布局inflater在片段活动中膨胀此布局,例如在region = c("regi\xf3n de tarapac\xe1","regi\xf3n de tarapac\xe1") provincia = c("cami\xf1a","iquique") comuna = c("tamarugal","alto hospicio") comunas_casen_2015 = data.frame(region,provincia,comuna,stringsAsFactors=FALSE) comunas_casen_2015 %>% mutate(region = gsub("\xe1", "\u00e1", region), # a with acute region = gsub("<e1>", "\u00e1", region) # a with acute ) comunas_casen_2015 %>% mutate_all(funs(gsub("\xe1", "\u00e1", .), # a with acute gsub("<e1>", "\u00e1", .) # a with acute )) region provincia comuna region_gsub provincia_gsub comuna_gsub 1 región de tarapacá camiña tamarugal región de tarapacá camiña tamarugal 2 región de tarapacá iquique alto hospicio región de tarapacá iquique alto hospicio

onCreateView

然后我不知道如何处理View header = inflater.inflate(R.layout.list_header,container,false); 以使其显示在片段中的某个位置。我可以通过调用header将其添加到原始活动中,但如何将其添加到片段?

我不想改变ActionBar标题,首先只是为了美学,其次是因为片段覆盖了它。理想情况下,会出现一个类似于警告对话框的标题。

2 个答案:

答案 0 :(得分:1)

让我试着了解你。您想要在片段列表中添加标题(如标题),而不是在ActionBar中。正确?

查看fragment_item_list.xml,我们有:(我按照你的步骤:&#34; New-&gt; Fragment-&gt; Fragment(List)&#34;)

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView 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/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    app:layoutManager="LinearLayoutManager"
    tools:listitem="@layout/fragment_item" />

RecyclerView是用于填充列表的容器,换句话说,RecyclerView(或ListView)仅包含所有列表。因此,您必须添加另一个容器(如LinearLayout,RelativeLayout等)作为布局的根目录,以向布局添加更多视图。使用LinearLayout的示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/text_header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:text="Hello World! I'm a header!"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:name="com.veroapps.myapplication.ItemFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        app:layoutManager="LinearLayoutManager"
        tools:listitem="@layout/fragment_item" />
</LinearLayout>

通过这个,您将在顶部有一个标题列表。现在,您可以在ItemFragment(Android Studio生成的片段的名称)中管理标题TextView。当然还有更多的方法可以做到这一点,但这很容易。

希望这对你有所帮助。

答案 1 :(得分:0)

在Fragment java类中,应该有一个名为onCreateView的方法,您可以在此处设置Fragment的布局(以及添加列表的位置)。它看起来像这样:

public static class ExampleFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.example_fragment, container, false);
    }
}

在此片段中,此代码inflater.inflate(R.layout.example_fragment, container, false);会夸大布局,这意味着它是一个xml文件,用于定义名为example_fragment.xml的布局。

当您找到此XML文件时,您的代码将是相同的。您可以在其中添加其他视图。

您需要在该文件中已存在的TextViewRecyclerView之上添加另一个ListView

这样的事情:

<LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
>
 <TextView
   ...
   android:text="YOUR TITLE" />
 <RecyclerView
   ... />

</LinearLayout>