Android: нажмите ListItem в ListView, чтобы заменить фрагмент - PullRequest
0 голосов
/ 12 октября 2018

У меня есть TabLayout, в котором я показываю 3 вкладки каждая в виде фрагмента.Первая вкладка загружает первый фрагмент, который имеет ListView.Когда я щелкаю элемент ListView, я хочу, чтобы мой фрагмент первой вкладки был заменен новым фрагментом, содержащим подробную информацию о выбранном элементе.

Вот моя реализация:
макет моей активности:dashboard.xml

<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:id="@+id/ParentContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".interestingReads.InterestingReadsDashboard_Activity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/interestingReadsAppBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/interestingReadsToolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

        <android.support.design.widget.TabLayout
            android:id="@+id/interestingReadsTabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabTextAppearance="@style/MyCustomSmallLettersTextAppearance"
            app:tabMode="fixed"
            app:tabGravity="fill"/>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/interestingReadsViewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="165dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"  />


</FrameLayout>

фрагмент_rss_feeds.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
    android:orientation="vertical"
    android:descendantFocusability="blocksDescendants"
    android:id="@+id/relativeLayout111"
    tools:context=".interestingReads.RSSFeedsTab">

    <ListView
        android:id="@+id/rssFeedsListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@android:color/black"
        android:dividerHeight="8dp"
        android:background="@color/diffBackgroundWhite"
        />
</FrameLayout>

rss_item_list_row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/rssFeeds_LL_list_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="12dp"
    android:layout_marginBottom="12dp"
    android:orientation="vertical"
    android:descendantFocusability="blocksDescendants"
    android:clickable="true"
    >
<LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:padding="6dp"
    >

    <ImageView
        android:id="@+id/rssFeeds_Image_list_view"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:contentDescription="@string/app_name"
        android:padding="0dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="7dp">

        <TextView
            android:id="@+id/rssFeeds_Title_list_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="13sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/rssFeeds_Description_list_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingTop="5dp"
            android:textSize="12sp" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>

RSSFeedsTab.java

public class RSSFeedsTab extends ListFragment implements  OnItemClickListener {
.
.
.
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
.
.
.    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {


        View RootView =  getActivity().getLayoutInflater().inflate(R.layout.fragment_rssfeeds_tab, container, false); //pass the correct layout name for the fragment
        final ListView RSSFeedsItemLV = (ListView) RootView.findViewById(R.id.rssFeedsListView);
        final LinearLayout RSSFeeds_SingleItem_LL = (LinearLayout) RootView.findViewById(R.id.rssFeeds_LL_list_view);
.
.
.
        SimpleAdapter simpleAdapter = new SimpleAdapter(getActivity().getBaseContext(), aList, R.layout.rss_item_list_row, from, to){
            @Override
            public View getView (int position, View convertView, ViewGroup parent)
            {
                View v = super.getView(position, convertView, parent);
                final int finalposition = position;
                final LinearLayout RSSFeed_singleItem=(LinearLayout) v.findViewById(R.id.rssFeeds_LL_list_view);

                RSSFeed_singleItem.setOnClickListener(new View.OnClickListener() {

                    @Override
                    public void onClick(View arg0) {
                         Toast.makeText(getActivity(),"Link:==>"+localLinkArray[finalposition],Toast.LENGTH_SHORT).show();

                        FragmentTransaction trans = getFragmentManager().beginTransaction();
                        trans.replace(R.id.rssFeeds_LL_list_view, new ReadSingleRSSItem());

                        trans.commit();

                    }
                });
                return v;
            }
        };
        setListAdapter(simpleAdapter);
        RSSFeedsItemLV.setOnItemClickListener(this);
        return super.onCreateView(inflater, container, savedInstanceState);

    }

Благодаря вышеописанной реализации я многого достигаю: enter image description here Здесь, внутри onClick Я пытаюсь заменитьмой полный (fragment_rss_feeds.xml) фрагмент с новым фрагментом.Для этого я пытаюсь:

FragmentTransaction trans = getFragmentManager().beginTransaction();
                            trans.replace(R.id.rssFeeds_LL_list_view, new ReadSingleRSSItem());

, который заменяет только один элемент ListView, как показано в снимке.Если я использую R.id.relativeLayout111 вместо R.id.rssFeeds_LL_list_view в trans.replace, это выдает мне ошибку:

Не найдено представление для идентификатора 0x7f0900b7 (id /lativeLayout111)

Можеткто-нибудь, пожалуйста, помогите мне, насколько эффективно я буду использовать trans.replace в моем случае?Кроме того, как я могу получить доступ к идентификатору relativeLayout111 в trans.replace?

Заранее спасибо !!

Ответы [ 2 ]

0 голосов
/ 12 октября 2018

Проблема с использованием R.id.relativeLayout111 заключается в том, что он находится внутри Fragment, который помещается внутри действия в некотором контейнере. Решение состоит в том, чтобы использовать этоВместо этого используется идентификатор контейнера.

Вы не опубликовали код своей содержащей активности, поэтому на данный момент я не могу знать, что это за идентификатор.Надеюсь, вы понимаете, о чем я говорю.В основном просто замените:

getFragmentManager().beginTransaction();
                        trans.replace(R.id.rssFeeds_LL_list_view, new ReadSingleRSSItem());

с правильным идентификатором!

0 голосов
/ 12 октября 2018

Вам необходимо добавить контейнер в родительский макет, в данном случае это действие, содержащее ваши вкладки.Например, Framelayout, упомянутый ниже

       <FrameLayout
        android:id="@+id/detail"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

, затем вам нужно поместить фрагмент RSS-детали в этот контейнер, используя

        getFragmentManager().beginTransaction();
                        trans.replace(R.id.detail, new ReadSingleRSSItem()).commit();
...