-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Added an option to Remove a new language description while uploading #4406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ca0a776
implementation done modification required in card & more
Ayan-10 83b008f
Remove button reversed
Ayan-10 3f143f4
Code beautification done
Ayan-10 681c2b6
Code beautification done
Ayan-10 02a4b2f
minor issues fixed
Ayan-10 e3b0174
Merge branch 'master' into ayan_remove
Ayan-10 e5532b6
java docs added
Ayan-10 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <vector android:height="24dp" android:tint="?attr/editTextColor" | ||
| android:viewportHeight="24.0" android:viewportWidth="24.0" | ||
| android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <path android:fillColor="#8F000000" android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/> | ||
| </vector> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,53 +1,69 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:orientation="horizontal" | ||
| android:weightSum="8"> | ||
|
|
||
| <androidx.appcompat.widget.AppCompatSpinner | ||
| android:id="@+id/spinner_description_languages" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_weight="0" | ||
| android:minWidth="@dimen/tiny_height" | ||
| android:padding="@dimen/dimen_0" | ||
| android:spinnerMode="dialog" /> | ||
| <LinearLayout | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:orientation="vertical" | ||
| android:layout_weight="8"> | ||
| <com.google.android.material.textfield.TextInputLayout | ||
| android:id="@+id/caption_item_edit_text_input_layout" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| > | ||
|
|
||
| <androidx.appcompat.widget.AppCompatEditText | ||
| android:id="@+id/caption_item_edit_text" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:hint="@string/share_caption_hint" | ||
| android:imeOptions="actionNext|flagNoExtractUi" | ||
| android:inputType="textMultiLine" | ||
| android:maxLength="255" /> | ||
| </com.google.android.material.textfield.TextInputLayout> | ||
|
|
||
| <com.google.android.material.textfield.TextInputLayout | ||
| android:id="@+id/description_item_edit_text_input_layout" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| > | ||
|
|
||
| <androidx.appcompat.widget.AppCompatEditText | ||
| android:id="@+id/description_item_edit_text" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:hint="@string/share_description_hint" | ||
| android:imeOptions="actionNext|flagNoExtractUi" | ||
| android:inputType="textMultiLine" /> | ||
| </com.google.android.material.textfield.TextInputLayout> | ||
|
|
||
| </LinearLayout> | ||
| </LinearLayout> | ||
| <androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" | ||
| xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:layout_marginHorizontal="8dp" | ||
| android:layout_marginVertical="8dp" | ||
| app:elevation="6dp"> | ||
|
|
||
| <androidx.constraintlayout.widget.ConstraintLayout | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:layout_marginHorizontal="20dp" | ||
| android:layout_marginVertical="20dp"> | ||
|
|
||
| <ImageView | ||
| android:id="@+id/btn_remove" | ||
| android:layout_width="24dp" | ||
| android:layout_height="wrap_content" | ||
| android:contentDescription="@string/remove" | ||
| android:visibility="visible" | ||
| app:layout_constraintBottom_toTopOf="@+id/caption_item_edit_text_input_layout" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:srcCompat="@drawable/ic_remove" /> | ||
|
|
||
| <Spinner | ||
| android:id="@+id/spinner_description_languages" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:spinnerMode="dialog" | ||
| app:layout_constraintBottom_toTopOf="@+id/caption_item_edit_text_input_layout" | ||
| app:layout_constraintStart_toStartOf="parent" /> | ||
|
|
||
| <com.google.android.material.textfield.TextInputLayout | ||
| android:id="@+id/caption_item_edit_text_input_layout" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| app:layout_constraintBottom_toTopOf="@id/description_item_edit_text_input_layout" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:layout_constraintStart_toStartOf="parent"> | ||
|
|
||
| <com.google.android.material.textfield.TextInputEditText | ||
| android:id="@+id/caption_item_edit_text" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:hint="@string/share_caption_hint" | ||
| android:imeOptions="actionNext|flagNoExtractUi" | ||
| android:inputType="textMultiLine" /> | ||
| </com.google.android.material.textfield.TextInputLayout> | ||
|
|
||
| <com.google.android.material.textfield.TextInputLayout | ||
| android:id="@+id/description_item_edit_text_input_layout" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| app:layout_constraintBottom_toBottomOf="parent" | ||
| app:layout_constraintEnd_toEndOf="parent" | ||
| app:layout_constraintStart_toStartOf="parent"> | ||
|
|
||
| <com.google.android.material.textfield.TextInputEditText | ||
| android:id="@+id/description_item_edit_text" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:hint="@string/share_description_hint" | ||
| android:imeOptions="actionNext|flagNoExtractUi" | ||
| android:inputType="textMultiLine" /> | ||
| </com.google.android.material.textfield.TextInputLayout> | ||
|
|
||
| </androidx.constraintlayout.widget.ConstraintLayout> | ||
| </androidx.cardview.widget.CardView> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.