第三章(碎片實踐剑勾,簡易版的新聞應用)

碎片實踐惋耙,簡易版的新聞應用

1.首先添加RecyclerView的依賴庫:
簡便方法:File->Project Structure->Dependencies->點+號找到recyclerview添加后點擊ok就自動給項目添加了依賴庫

  1. 首先建一個新聞的實體類News
package com.example.fragmentbestpractice;

/**
 * Created by 侯允林 on 2018/5/27.
 */

public class News {
    private String title;
    private String content;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}

title表示新聞標題瞬铸,content表示新聞內(nèi)容

  1. 新建布局news_content_frag.xml作為新聞內(nèi)容的布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
<LinearLayout
    android:id="@+id/visibility_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:visibility="invisible">
    <TextView
        android:id="@+id/news_title"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:gravity="center"
        android:padding="10dp"
        android:textSize="20sp"/>
    <View
        android:layout_height="1dp"
        android:layout_width="match_parent"
        android:background="#000"
        />
    <TextView
        android:id="@+id/news_content"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:padding="15dp"
        android:textSize="18sp"/>
</LinearLayout>
    <View
        android:layout_width="1dp"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:background="#000"/>
</RelativeLayout>

用View實現(xiàn)細分隔線

  1. 新建一個NewsContentFragment繼承Fragment而钞,并提供一個refresh方法用于刷新內(nèi)容
package com.example.fragmentbestpractice;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;

/**
 * Created by 侯允林 on 2018/5/27.
 */

public class NewsContentFragment extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.news_content_frag,container,false);
        return view;
    }
    public void refresh(String newsTitle,String newsContent){
        LinearLayout layout=getView().findViewById(R.id.visibility_layout);//getView() return The fragment's root view, or null if it has no layout.
        layout.setVisibility(View.VISIBLE);
        TextView newsTitleText=(TextView)getView().findViewById(R.id.news_title);
        TextView newsTitleContentText=(TextView)getView().findViewById(R.id.news_content);
        newsTitleText.setText(newsTitle);
        newsTitleContentText.setText(newsContent);

    }
}

這些方法和一些用法很簡單就不必贅述了,refresh方法是在其他活動或碎片中通過獲得NewsContentFragment實例調(diào)用的

  • 以上的這個碎片是用于雙頁模式的
  1. 我們再建一個空Activity叫NewsContentActivity將上面這個NewsContentFragment引進來
  • 布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="com.example.fragmentbestpractice.NewsContentActivity">
<fragment
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:name="com.example.fragmentbestpractice.NewsContentFragment"
    android:id="@+id/news_content_fragment"/>
</LinearLayout>

  • NewsContentActivity
package com.example.fragmentbestpractice;

        import android.content.Context;
        import android.content.Intent;
        import android.support.v7.app.AppCompatActivity;
        import android.os.Bundle;

public class NewsContentActivity extends AppCompatActivity {
    public static void actionStart(Context context,String newsTitle,String newsContent){
        Intent intent=new Intent(context,NewsContentActivity.class);
        intent.putExtra("news_title",newsTitle);
        intent.putExtra("news_content",newsContent);
        context.startActivity(intent);
    }
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.news_content);
        String newsTitle=getIntent().getStringExtra("news_title");
        String newsContent=getIntent().getStringExtra("news_content");
        NewsContentFragment newsContentFragment=(NewsContentFragment) getSupportFragmentManager().findFragmentById(R.id.news_content_fragment);
        newsContentFragment.refresh(newsTitle,newsContent);
    }
}

這里的actionStart方法作用是方便別的活動啟動這個活動時傳遞數(shù)據(jù)翎猛,要記住這種寫法胖翰。
在onCreate方法里面FragmentManager的findFragmentById的方法獲得NewsContentFragment的實例,然后調(diào)用它的refresh方法刷新顯示內(nèi)容切厘,從而刷新了NewsContentActivity里面顯示的內(nèi)容

  1. 接下來創(chuàng)建一個用于顯示新聞列表的布局萨咳,利用RecyclerView.
  • 新建news_title_frag.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:id="@+id/news_title_recrcler_view"/>
</LinearLayout>
  • 新建news_item作為RecyclerView的子項布局
<?xml version="1.0" encoding="utf-8"?>
    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/news_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:maxLines="1"
        android:ellipsize="end"
        android:textSize="18sp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:paddingTop="15dp"
        android:paddingBottom="15dp"/>

  1. 接下來新建一個用于展示新聞列表的Fragment,在這個碎片中我們順帶創(chuàng)建一個用于顯示標題列表的RecyclerView的適配器
package com.example.fragmentbestpractice;

import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;

/**
 * Created by 侯允林 on 2018/5/27.
 */

public class NewTitileFragment extends Fragment {
    private boolean isTwoPane;
    private RecyclerView newsTitleRecyclerView;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.news_title_frag, container, false);
        newsTitleRecyclerView = view.findViewById(R.id.news_title_recrcler_view);
        InnerNewsAdapter adapter = new InnerNewsAdapter(getNews());
        LinearLayoutManager manager = new LinearLayoutManager(getActivity());
        newsTitleRecyclerView.setLayoutManager(manager);
        newsTitleRecyclerView.setAdapter(adapter);
        return view;
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        if (getActivity().findViewById(R.id.news_content_layout) != null) {
            isTwoPane = true;
        } else {
            isTwoPane = false;
        }
    }

    public List<News> getNews() {
        List<News> newsList = new ArrayList<>();
        for (int i = 1; i <= 50; i++) {
            News news = new News();
            news.setTitle("this is news title" + i);
            news.setContent(getRandomLengthContent("this is news title" + i));
            newsList.add(news);
        }
        return newsList;
    }

    private String getRandomLengthContent(String s) {
        Random random = new Random();
        int length = random.nextInt(20) + 1;
        StringBuilder builder = new StringBuilder();
        for (int i = 1; i <= length; i++) {
            builder.append(s);
        }
        return builder.toString();
    }


    public class InnerNewsAdapter extends RecyclerView.Adapter<InnerNewsAdapter.ViewHolder> {
        private List<News> mNewsList;

        public InnerNewsAdapter(List<News> newsList) {
            this.mNewsList = newsList;
        }

        class ViewHolder extends RecyclerView.ViewHolder {

            private TextView newsItem;

            public ViewHolder(View itemView) {
                super(itemView);
                newsItem = (TextView) itemView.findViewById(R.id.news_title);
            }
        }

        @Override
        public InnerNewsAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
            View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.news_item, parent, false);
            return new ViewHolder(view);
        }

        @Override
        public void onBindViewHolder(final InnerNewsAdapter.ViewHolder holder, final int position) {
          final  News news = mNewsList.get(position);
            holder.newsItem.setText(news.getTitle());
            holder.newsItem.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    if (isTwoPane) {
                        NewsContentFragment newsContentFragment = (NewsContentFragment) getActivity().getSupportFragmentManager().findFragmentById(R.id.news_content_fragment);
                        //注意區(qū)分getFragmentManager
                        newsContentFragment.refresh(news.getTitle(), news.getContent());
                    }else {
                        NewsContentActivity.actionStart(getActivity(),news.getTitle(),news.getContent());
                    }
                }
            });

        }

        @Override
        public int getItemCount() {
            return mNewsList.size();
        }
    }
}

暫且可拋開適配器不看,在onActivityCreated方法里面判斷了當前是雙頁模式還是單頁模式疫稿,可以理解為是大屏幕還是小屏幕培他,因為我們后后面會設置自適應大屏幕鹃两,當應用跑在大屏幕時新聞列表和新聞內(nèi)容是同時出現(xiàn)了,所以能找到news_content_layout的實例靶壮。用isTwoPane變量判斷

  1. 實現(xiàn)雙頁模式
  • 首先修改activity_main.xml
<?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="com.example.fragmentbestpractice.MainActivity">

    <fragment
        android:id="@+id/news_title_fragment"
        android:name="com.example.fragmentbestpractice.NewTitileFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</FrameLayout>

  • 然后在res里面新建一個layout-large文件夾怔毛,里面新建activity_main.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="horizontal">

    <fragment
        android:id="@+id/news_title_fragment"
        android:name="com.example.fragmentbestpractice.NewTitileFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" />
    <FrameLayout
        android:layout_width="0dp"
        android:layout_weight="3"
        android:layout_height="match_parent"
        android:id="@+id/news_content_layout">

        <fragment
            android:id="@+id/news_content_fragment"
            android:name="com.example.fragmentbestpractice.NewsContentFragment"
            android:layout_height="match_parent"
            android:layout_width="match_parent"/>
    </FrameLayout>
</LinearLayout>

雙頁模式下我們同時引入兩個碎片,注意到news_content_layout在這個布局里面
NewTitileFragment 中的onActivityCreated方法中找的就是這個
腾降。

  1. 我們接下來看這個適配器內(nèi)部類,寫在內(nèi)部是為了方便訪問NewTitileFragment 中的變量碎绎,如isTwoPane螃壤。這兒我們只看onBindViewHolder方法里面的內(nèi)容
 @Override
        public void onBindViewHolder(final InnerNewsAdapter.ViewHolder holder, final int position) {
          final  News news = mNewsList.get(position);
            holder.newsItem.setText(news.getTitle());
            holder.newsItem.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    if (isTwoPane) {
                        NewsContentFragment newsContentFragment = (NewsContentFragment) getActivity().getSupportFragmentManager().findFragmentById(R.id.news_content_fragment);
                        //注意區(qū)分getFragmentManager
                        newsContentFragment.refresh(news.getTitle(), news.getContent());
                    }else {
                        NewsContentActivity.actionStart(getActivity(),news.getTitle(),news.getContent());
                    }
                }
            });

        }

我們?yōu)槊總€標題添加了點擊事件,并判斷當前是否為雙頁模式筋帖。
如果為雙頁模式奸晴,就直接獲取NewsContentFragment的實例并刷新里面的內(nèi)容,這里獲取該實例有兩種方式日麸,一種是直接通過getFragmentManager的findFragmentById方法寄啼,這個可以在碎片里面直接用,第二種是通過過去相關(guān)聯(lián)的活動再調(diào)用getSupportFragmentManager的findFragmentById方法代箭,我在這兒用的是第二種墩划,但是第一種更簡單。
如果是單頁模式NewsContentActivity的actionStart方法啟動NewsContentActivity嗡综,并將標題和內(nèi)容傳過去乙帮。getActivity方法是獲取與當前碎片關(guān)聯(lián)的Activity,在這兒就是MainActivity极景,因為在它的布局將NewTitileFragment引入進去了
平板:

image

手機:
image

這個就講到這兒察净,基本沒什么難點

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市盼樟,隨后出現(xiàn)的幾起案子氢卡,更是在濱河造成了極大的恐慌,老刑警劉巖晨缴,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件译秦,死亡現(xiàn)場離奇詭異,居然都是意外死亡喜庞,警方通過查閱死者的電腦和手機诀浪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來延都,“玉大人雷猪,你說我怎么就攤上這事∥浚” “怎么了求摇?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵射沟,是天一觀的道長。 經(jīng)常有香客問我与境,道長验夯,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任摔刁,我火速辦了婚禮挥转,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘共屈。我一直安慰自己绑谣,他們只是感情好,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布拗引。 她就那樣靜靜地躺著借宵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪矾削。 梳的紋絲不亂的頭發(fā)上壤玫,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機與錄音哼凯,去河邊找鬼欲间。 笑死,一個胖子當著我的面吹牛挡逼,可吹牛的內(nèi)容都是我干的括改。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼家坎,長吁一口氣:“原來是場噩夢啊……” “哼嘱能!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起虱疏,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤惹骂,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后做瞪,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體对粪,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年装蓬,在試婚紗的時候發(fā)現(xiàn)自己被綠了著拭。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡牍帚,死狀恐怖儡遮,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情暗赶,我是刑警寧澤鄙币,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布肃叶,位于F島的核電站,受9級特大地震影響十嘿,放射性物質(zhì)發(fā)生泄漏因惭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一绩衷、第九天 我趴在偏房一處隱蔽的房頂上張望蹦魔。 院中可真熱鬧,春花似錦唇聘、人聲如沸版姑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至聪蘸,卻和暖如春宪肖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背健爬。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工控乾, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人娜遵。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓蜕衡,卻偏偏與公主長得像,于是被迫代替她去往敵國和親设拟。 傳聞我的和親對象是個殘疾皇子慨仿,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容