mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Assign values of title and desc form fields to vars
This commit is contained in:
parent
def0954e6d
commit
13e2f04c28
1 changed files with 5 additions and 1 deletions
|
|
@ -49,7 +49,10 @@ public class SingleUploadFragment extends Fragment {
|
||||||
public boolean onOptionsItemSelected(MenuItem item) {
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
switch (item.getItemId()) {
|
switch (item.getItemId()) {
|
||||||
case R.id.menu_upload_single:
|
case R.id.menu_upload_single:
|
||||||
uploadActionInitiatedHandler.uploadActionInitiated(titleEdit.getText().toString(), descEdit.getText().toString());
|
//TODO: Save the values of these fields in short-lived cache so next time this fragment is loaded, we can access these
|
||||||
|
String title = titleEdit.getText().toString();
|
||||||
|
String desc = descEdit.getText().toString();
|
||||||
|
uploadActionInitiatedHandler.uploadActionInitiated(title, desc);
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -62,6 +65,7 @@ public class SingleUploadFragment extends Fragment {
|
||||||
|
|
||||||
titleEdit = (EditText)rootView.findViewById(R.id.titleEdit);
|
titleEdit = (EditText)rootView.findViewById(R.id.titleEdit);
|
||||||
descEdit = (EditText)rootView.findViewById(R.id.descEdit);
|
descEdit = (EditText)rootView.findViewById(R.id.descEdit);
|
||||||
|
//TODO: Add button here for 'copy from previous upload'
|
||||||
licenseSummaryView = (TextView)rootView.findViewById(R.id.share_license_summary);
|
licenseSummaryView = (TextView)rootView.findViewById(R.id.share_license_summary);
|
||||||
|
|
||||||
TextWatcher uploadEnabler = new TextWatcher() {
|
TextWatcher uploadEnabler = new TextWatcher() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue