注意添加application android:name="YourAppName"
public class YourAppName extends Application { private List<Item> mItems; @Override public void onCreate() { super.onCreate(); mItems = getYourItemList(); } public List<Item> getItems() { return mItems; }}

public class DetailActivity extends Activity {  private YourAppName mApp;  private ImageButton mNextButton;  private ImageButton mBackButton;  private TextView mTitle;  private int mIndex;  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.your_layout);    mApp = (YourAppName) getApplication();    /*This index should come from the intent */    mIndex = 2;     getWidgets();    populateWidgets();  }  private void getWidgets() {    mNextButton = (ImageButton)findViewById(R.id.next);    mTitle = (TextView)findViewById(R.id.title);    /* other findViewById */    mNextButton.setOnClickListener(new OnClickListener() {        public void onClick(View v) {           mIndex++; /*Notice that this will get a NPE.                     You need to place a better logic here */           populateWidgets();        }    });  }  private void populateWidgets() {    Item item = mApp.getItemList().get(mItem);    mTitle.setText(item.getName());  }}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android 干货文章集锦
  2. Android通过SystemProperties获取build.p
  3. 最新版的Android4.4.2 SDK无法下载解决
  4. Android View的onTouchEvent和OnTouch区
  5. ActionBarImpl can only be used with a
  6. Android(安卓)RecyclerView滚动定位
  7. android 下载 并显示 progressDialog
  8. 【Android】 Android-wifi 直连 wifi dir
  9. Android内存泄漏检测-LeakCanary
  10. Android自学之路3