コード例 #1
0
  @Override
  public void onCreate() {
    super.onCreate();

    WebImageManager webImageManager = WebImageManager.getInstance(this);
    webImageManager.setMemoryCacheEnabled(true);
    webImageManager.setFileCacheEnabled(true);
  }
コード例 #2
0
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    this.setContentView(R.layout.activity_country);

    this.webImageManager = WebImageManager.getInstance(this);

    this.selectedCountry = null;

    this.listFragment =
        (CountryListFragment) this.getSupportFragmentManager().findFragmentById(R.id.list);
    this.detailsFragment = null;

    this.layoutDualPane = this.findViewById(R.id.details) != null;

    if (savedInstanceState != null) {
      Country country = savedInstanceState.getParcelable(CountryActivity.INSTANCE_STATE_COUNTRY);

      if (country != null) {

        if (this.layoutDualPane) {
          this.selectCountry(country);
        } else {
          this.selectedCountry = country;
        }
      }
    }
  }