Ejemplo n.º 1
0
  @Override
  protected void onCreate(Bundle state) {
    super.onCreate(state);
    setContentView(R.layout.activity_organization);

    organization = IntentHelper.getOrganization(getIntent());
    user = IntentHelper.getUser(getIntent());

    getSupportActionBar().setTitle(organization.getName());

    initEvents();
    initPreregisterButton();

    loadEvents();

    String description = organization.getDescription();
    if (description != null) {
      description = description.trim();
    }
    ((TextView) findViewById(R.id.organization_description)).setText(description);
  }