* 實踐:一個簡易版的新聞應(yīng)用

一、News 實體類:


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;
    }
}

二嗡载、新聞列表中子項的布局 news_item.xml:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/news_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:ellipsize="end"
        android:textSize="18sp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:paddingTop="15dp"
        android:paddingBottom="15dp"/>
</LinearLayout>

這段代碼也非常簡單洼滚,只是在 LinearLayout 中放入了一個 TextView 用于顯示新聞的標題技潘。仔細觀察 TextView享幽,你會發(fā)現(xiàn)其中有幾個屬性是我們之前沒有學(xué)過的。android:padding 表示給控件的周圍加上補白摆霉,這樣不至于讓文本內(nèi)容會緊靠在邊緣上。android:singleLine 設(shè)置為 true 表示讓這個TextView 只能單行顯示搭盾。android:ellipsize 用于設(shè)定當(dāng)文本內(nèi)容超出控件寬度時刻两,文本的縮略方式磅摹,這里指定成 end 表示在尾部進行縮略霎奢。


三、新聞列表的適配器 NewsAdapter:


public class NewsAdapter extends ArrayAdapter<News> {
    private int resourceId;
    public NewsAdapter(Context context, int textViewResourceId, List<News>objects) {
        super(context, textViewResourceId, objects);
        resourceId = textViewResourceId;
    }
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        News news = getItem(position);
        View view;
        if (convertView == null) {
            view = LayoutInflater.from(getContext()).inflate(resourceId, null);
        } else {
            view = convertView;
        } 
        TextView newsTitleText =(TextView) view.findViewById(R.id.news_title);
        newsTitleText.setText(news.getTitle());
        return view;
    }
}

四、新聞內(nèi)容布局 news_content_frag.xml:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <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_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="10dp"
            android:textSize="20sp" />
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:scaleType="fitXY"
            android:src="@drawable/spilt_line" />
        <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>
    <ImageView
        android:layout_width="1dp"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:scaleType="fitXY"
        android:src="@drawable/spilt_line_vertical" />
</RelativeLayout>

新聞內(nèi)容的布局主要可以分為兩個部分悼潭,頭部顯示完整的新聞標題舰褪,正文部分顯示新聞內(nèi)容疏橄,中間使用一條細線分隔開。這里的細線是利用 ImageView 顯示了一張很窄的圖片來實現(xiàn)的晃酒,將 ImageView 的 android:scaleType 屬性設(shè)置為 fitXY窄绒,表示讓這張圖片填充滿整個控件的大小彰导。


五、新聞內(nèi)容碎片類 NewsContentFragment:


NewsContentFragment extends Fragment {
    private View view;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        view = inflater.inflate(R.layout.news_content_frag, container, false);
        return view;
    }
    public void refresh(String newsTitle, String newsContent) {
        View visibilityLayout = view.findViewById(R.id.visibility_layout);
        visibilityLayout.setVisibility(View.VISIBLE);
        TextView newsTitleText = (TextView) view.findViewById (R.id.news_title);
        TextView newsContentText = (TextView) view.findViewById(R.id.news_content);
        newsTitleText.setText(newsTitle); // 刷新新聞的標題
        newsContentText.setText(newsContent); // 刷新新聞的內(nèi)容
    }
}

首先在 onCreateView() 方法里加載了我們剛剛創(chuàng)建的 news_content_frag 布局,這個沒什么好解釋的倔幼。接下來又提供了一個 refresh() 方法,這個方法就是用于將新聞的標題和內(nèi)容顯示在界面上的翩腐∶裕可以看到,這里通過 findViewById() 方法分別獲取到新聞的標題和內(nèi)容控件处渣,然后將方法傳遞進來的參數(shù)設(shè)置進去蛛砰。


六泥畅、新聞內(nèi)容布局 news_content.xml:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <fragment
        android:id="@+id/news_content_fragment"
        android:name="com.example.fragmentbestpractice.NewsContentFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>

這里我們充分發(fā)揮了代碼的復(fù)用性,直接在布局中引入了 NewsContentFragment柑贞,這樣也就相當(dāng)于把 news_content_frag 布局的內(nèi)容自動加了進來聂抢。


七涛浙、顯示新聞內(nèi)容的活動 NewsContentActivity:


public class NewsContentActivity extends Activity {
    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);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.news_content);
        String newsTitle = getIntent().getStringExtra("news_title"); // 獲取傳入的新聞標題
        String newsContent = getIntent().getStringExtra("news_content"); // 獲取傳入的新聞內(nèi)容
        NewsContentFragment newsContentFragment = (NewsContentFragment) getFragmentManager() .findFragmentById(R.id.news_content_fragment);
        newsContentFragment.refresh(newsTitle, newsContent); // 刷新NewsContentFragment界面
    }
}

可以看到轿亮,在 onCreate() 方法中我們通過 Intent 獲取到了傳入的新聞標題和新聞內(nèi)容,然后調(diào)用 FragmentManager 的 findFragmentById() 方法得到了 NewsContentFragment 的實例按咒,接著調(diào)用它的 refresh() 方法但骨,并將新聞的標題和內(nèi)容傳入奔缠,就可以把這些數(shù)據(jù)顯示出來了。注意這里我們還提供了一個 actionStart() 方法两波。


八、顯示新聞列表的布局 news_title_frag.xml:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ListView
        android:id="@+id/news_title_list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </ListView>
</LinearLayout>

九单起、新聞標題碎片類 NewsTitleFragment:


public class NewsTitleFragment extends Fragment implements OnItemClickListener {
    private ListView newsTitleListView;
    private List<News> newsList;
    private NewsAdapter adapter;
    private boolean isTwoPane;
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        newsList = getNews(); // 初始化新聞數(shù)據(jù)
        adapter = new NewsAdapter(activity, R.layout.news_item, newsList);
    }
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.news_title_frag, container, false);
        newsTitleListView = (ListView) view.findViewById(R.id.news_title_ list_view);
        newsTitleListView.setAdapter(adapter);
        newsTitleListView.setOnItemClickListener(this);
        return view;
    }
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        if (getActivity().findViewById(R.id.news_content_layout) != null) {
            isTwoPane = true; // 可以找到news_content_layout布局時嘀倒,為雙頁模式
        } else {
            isTwoPane = false; // 找不到news_content_layout布局時测蘑,為單頁模式
        }
    }
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        News news = newsList.get(position);
        if (isTwoPane) { 
        // 如果是雙頁模式锐想,則刷新NewsContentFragment中的內(nèi)容
            NewsContentFragment newsContentFragment = (NewsContentFragment) getFragmentManager().findFragmentById(R.id.news_content_fragment);
            newsContentFragment.refresh(news.getTitle(), news.getContent());
        } else {
        // 如果是單頁模式赠摇,則直接啟動NewsContentActivity
            NewsContentActivity.actionStart(getActivity(), news.getTitle(), news.getContent());
        }
    }
    private List<News> getNews() {
        List<News> newsList = new ArrayList<News>();
        News news1 = new News();
        news1.setTitle("Succeed in College as a Learning Disabled Student");
        news1.setContent("College freshmen will soon learn to live with a
            roommate, adjust to a new social scene and survive less-than-stellar
            dining hall food. Students with learning disabilities will face these
            transitions while also grappling with a few more hurdles.");
        newsList.add(news1);
        News news2 = new News();
        news2.setTitle("Google Android exec poached by China's Xiaomi");
        news2.setContent("China's Xiaomi has poached a key Google executive
            involved in the tech giant's Android phones, in a move seen as a coup
            for the rapidly growing Chinese smartphone maker.");
        newsList.add(news2);
        return newsList;
    }
}

根據(jù)碎片的生命周期藕帜,我們知道惜傲,onAttach() 方法會首先執(zhí)行盗誊,因此在這里做了一些數(shù)據(jù)初始化的操作,比如調(diào)用 getNews() 方法獲取幾條模擬的新聞數(shù)據(jù)荒适,以及完成 NewsAdapter 的創(chuàng)建开镣。然后在 onCreateView() 方法中加載了 news_title_frag 布局,并給新聞列表的 ListView 注冊了點擊事件陕壹。接下來在 onActivityCreated() 方法中树埠,我們通過是否能夠找到一個 id 為 news_content_layout 的View 來判斷當(dāng)前是雙頁模式還是單頁模式怎憋,這個 id 為 news_content_layout 的 View 只在雙頁模式中才會出現(xiàn),在稍后的布局里你將會看到赠橙。然后在 ListView 的點擊事件里我們就可以判斷,如果當(dāng)前是單頁模式掉奄,就啟動一個新的活動去顯示新聞內(nèi)容凤薛,如果當(dāng)前是雙頁模式缤苫,就更新新聞內(nèi)容碎片里的數(shù)據(jù)。


十涣狗、主布局 activity_main.xml:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <fragment
        android:id="@+id/news_title_fragment"
        android:name="com.example.fragmentbestpractice.NewsTitleFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>

新建 layout-sw600dp 文件夾镀钓,在這個文件夾下再新建一個 activity_main.xml 文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <fragment
        android:id="@+id/news_title_fragment"
        android:name="com.example.fragmentbestpractice.NewsTitleFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" />
    <FrameLayout
        android:id="@+id/news_content_layout"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3" >
        <fragment
            android:id="@+id/news_content_fragment"
            android:name="com.example.fragmentbestpractice.NewsContentFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>
</LinearLayout>

可以看出丁溅,在雙頁模式下我們同時引入了兩個碎片探遵,并將新聞內(nèi)容的碎片放在了一個 FrameLayout 布局下,而這個布局的id 正是 news_content_layout涯穷。因此规哪,能夠找到這個 id 的時候就是雙頁模式诉稍,否則就是單面模式。


十一蚤告、MainActivity:


public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);
    }
}

十二服爷、結(jié)果:


最后編輯于
?著作權(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é)果婚禮上粘昨,老公的妹妹穿的比我還像新娘。我一直安慰自己芭析,他們只是感情好吞瞪,可當(dāng)我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布芍秆。 她就那樣靜靜地躺著妖啥,像睡著了一般。 火紅的嫁衣襯著肌膚如雪蒿偎。 梳的紋絲不亂的頭發(fā)上怀读,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機與錄音不从,去河邊找鬼椿息。 笑死,一個胖子當(dāng)著我的面吹牛条舔,可吹牛的內(nèi)容都是我干的乏矾。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼捷沸!你這毒婦竟也來了痒给?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤苍柏,失蹤者是張志新(化名)和其女友劉穎尼斧,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體试吁,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡棺棵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了潘悼。 大學(xué)時的朋友給我發(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
  • 正文 我出身青樓伟恶,卻偏偏與公主長得像,于是被迫代替她去往敵國和親毅该。 傳聞我的和親對象是個殘疾皇子博秫,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,440評論 2 348

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