Android提供一个JAR文件的支持库,允许你在比较低的版本中使用一些新版本的API。例如,支持库提供了碎片API让你在Android1.6中可以使用。
android:minSdkVersion="4" android:targetSdkVersion="15" />
import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; ...
import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.ViewGroup; public class ArticleFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // 给碎片填充布局 return inflater.inflate(R.layout.article_view, container, false); } }
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:name="com.example.android.fragments.HeadlinesFragment"
android:id="@+id/headlines_fragment"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
android:name="com.example.android.fragments.ArticleFragment"
android:id="@+id/article_fragment"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
import android.os.Bundle; import android.support.v4.app.FragmentActivity; public class MainActivity extends FragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.news_articles); } }
当设计你的程序去支持大部分屏幕尺寸时,你可以在不同的布局文件中复用你的碎片,在不同的屏幕空间中优化你的用户体验。
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
import android.os.Bundle; import android.support.v4.app.FragmentActivity; public class MainActivity extends FragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.news_articles); // 检查activity使用的布局中是否有碎片容器 if (findViewById(R.id.fragment_container) != null) { // 如果我们只是恢复先前的状态, // 那么我们什么都不用做,只是返回或者我们可以覆盖先前的碎片 if (savedInstanceState != null) { return; } // 创建一个碎片实例 HeadlinesFragment firstFragment = new HeadlinesFragment(); // 使用特别的指令从一个Intent开始一个activity, // 把Intent中附加的数据做为碎片的参数。 firstFragment.setArguments(getIntent().getExtras()); // 添加碎片到碎片容器中。 getSupportFragmentManager().beginTransaction() .add(R.id.fragment_container, firstFragment).commit(); } } }
// 创建一个碎片,传递一个参数给它,指定显示的内容。 ArticleFragment newFragment = new ArticleFragment(); Bundle args = new Bundle(); args.putInt(ArticleFragment.ARG_POSITION, position); newFragment.setArguments(args); FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); // 替换碎片容器中的碎片, // 添加操作到后退堆栈中,以便用户可以返回。 transaction.replace(R.id.fragment_container, newFragment); transaction.addToBackStack(null); // 提交操作 transaction.commit();
public class HeadlinesFragment extends ListFragment { OnHeadlineSelectedListener mCallback; // Activity容器必须实现这个接口 public interface OnHeadlineSelectedListener { public void onArticleSelected(int position); } @Override public void onAttach(Activity activity) { super.onAttach(activity); // 确保activity实现了接口回调,不然抛出一个异常 try { mCallback = (OnHeadlineSelectedListener) activity; } catch (ClassCastException e) { throw new ClassCastException(activity.toString() + " must implement OnHeadlineSelectedListener"); } } ... }
@Override public void onListItemClick(ListView l, View v, int position, long id) { // Send the event to the host activity mCallback.onArticleSelected(position); }
public static class MainActivity extends Activity implements HeadlinesFragment.OnHeadlineSelectedListener{ ... public void onArticleSelected(Uri articleUri) { // The user selected the headline of an article from the HeadlinesFragment // Do something here to display that article } }
public static class MainActivity extends Activity implements HeadlinesFragment.OnHeadlineSelectedListener{ ... public void onArticleSelected(int position) { // 用户从文章标题碎片选择标题 // 这里可以写一些显示文章的代码 ArticleFragment articleFrag = (ArticleFragment) getSupportFragmentManager().findFragmentById(R.id.article_fragment); if (articleFrag != null) { // 如果是文章显示页面碎片 // 呼叫一个更新内容的方法 articleFrag.updateArticleView(position); } else { // 否则我们在第一个布局页面 // 创建一个碎片,给选择项传递一个参数 ArticleFragment newFragment = new ArticleFragment(); Bundle args = new Bundle(); args.putInt(ArticleFragment.ARG_POSITION, position); newFragment.setArguments(args); FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); // 替换碎片的内容, // 添加改变到回退堆栈,以便用户返回 transaction.replace(R.id.fragment_container, newFragment); transaction.addToBackStack(null); // 提交更改 transaction.commit(); } } }