在活动中单击按钮时,将多个选项列表添加到片段中

时间:2017-04-20 05:06:31

标签: android android-fragments button filter multipleselection

我有一个包含列表视图的活动和底部的按钮。单击按钮时,我需要打开一个包含多选列表视图的片段和底部的按钮...现在,当我单击片段中的按钮时,我需要返回相同的活动。

this is activity containing list and button

this is fragment with multiple choice list and a button

帮助我在活动中添加片段布局和片段......

这是我的活动代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <TextView android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="40dp"

        android:textSize="20dip"
        android:textStyle="bold"/>
    <ListView
        android:id="@+id/list2"
        android:layout_width="match_parent"
        android:layout_height="460dp"
        />
    <Button
        android:id="@+id/filterbutton"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_gravity="center"

        android:text="@string/filter" />
</LinearLayout>

活动布局:

{{1}}

现在我在哪里添加我的片段布局在这个XML中以及如何添加 片段在我的活动中?

0 个答案:

没有答案