git format-patch master --stdout > fix_empty_poster.patch
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
| class Text { | |
| String text; | |
| String author; | |
| int length; | |
| String getText() { ... } | |
| void setText(String s) { ... } | |
| String getAuthor() { ... } | |
| void setAuthor(String s) { ... } | |
| int getLength() { ... } |
git apply --stat fix_empty_poster.patch
- This a template to report an issue.
Fill out the sections below, leaving the headers but replacing the content. If you're unable to provide certain information, please explain why in the relevant section. We may close issues if they do not include sufficient information.
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
| package com.nasrabadiam.widget | |
| import android.content.Context | |
| import android.util.AttributeSet | |
| import android.view.View | |
| import androidx.coordinatorlayout.widget.CoordinatorLayout | |
| import androidx.core.view.NestedScrollingChild | |
| import androidx.core.view.NestedScrollingChildHelper | |
| class NestedCoordinatorLayout @JvmOverloads constructor( |
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
| /* | |
| * Copyright 2019 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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
| <androidx.coordinatorlayout.widget.CoordinatorLayout> | |
| <com.google.android.material.appbar.AppBarLayout | |
| android:id="@+id/appBarLayout"> | |
| <androidx.appcompat.widget.Toolbar | |
| android:id="@+id/toolbar"> | |
| <com.google.android.material.tabs.TabLayout | |
| android:id="@+id/chipsLayout" /> |
OlderNewer