Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AccountsActivity extends BaseBackActivity {

private AccountsSummaryPresenter summaryPresenter;

@BindView(R.id.list_view) ListView listView;
@BindView(R.id.listView) ListView listView;

@Override protected int getContentViewId() {
return R.layout.activity_accounts;
Expand Down Expand Up @@ -70,7 +70,7 @@ public class AccountsActivity extends BaseBackActivity {
}
}

@OnItemClick(R.id.list_view) public void onAccountClick(int position) {
@OnItemClick(R.id.listView) public void onAccountClick(int position) {
Account account = accountController.readAll().get(position - 1);
startActivityForResult(EditAccountActivity.Companion.newIntent(this, account), REQUEST_EDIT_ACCOUNT);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class SummaryFragment extends Fragment {
@Nullable
private IMonthReport monthReport;

@BindView(R.id.list_view)
@BindView(R.id.listView)
ListView listView;

public SummaryFragment() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ExchangeRatesActivity extends BaseBackActivity {

private List<ExchangeRatePair> exchangeRateList;

@BindView(R.id.list_view)
@BindView(R.id.listView)
ListView listView;

@Override
Expand Down Expand Up @@ -93,7 +93,7 @@ public void addExchangeRate() {
startActivityForResult(intent, REQUEST_ADD_EXCHANGE_RATE);
}

@OnItemClick(R.id.list_view)
@OnItemClick(R.id.listView)
public void addExchangeRateOnBaseOfExisted(int position) {
AnswersProxy.get().logButton("Edit Exchange Rate");
if (position < 0 || position >= exchangeRateList.size()) return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class BackupActivity extends BaseBackActivity
private DbxClientV2 dbClient;

@BindView(R.id.btn_backup_now) View btnBackupNow;
@BindView(R.id.list_view) ListView listView;
@BindView(R.id.listView) ListView listView;

@Override protected int getContentViewId() {
return R.layout.activity_backup;
Expand Down Expand Up @@ -180,7 +180,7 @@ public class BackupActivity extends BaseBackActivity
backupController.makeBackup(dbClient);
}

@OnItemClick(R.id.list_view) public void restoreBackupClicked(int position) {
@OnItemClick(R.id.listView) public void restoreBackupClicked(int position) {
AnswersProxy.get().logButton("Restore backup");
final String backupName = listView.getAdapter().getItem(position).toString();

Expand Down

This file was deleted.

Loading