一、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);
}
}