summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2021-09-14 16:55:12 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2021-09-14 16:55:12 +0000
commit0a25520f9b1c57a3251e6cb57a50c71457117ce6 (patch)
treeca1c4f4733985973b3300160f5aad39b6ddc2b57
parent1954c51d317e33be42cd9716414915dfbfecda34 (diff)
parentbf0bc2a7ba3b8d184cc52d63ac6d32e51f9e1426 (diff)
Merge "wrapping actions container in a scroll view"
-rw-r--r--core/res/res/layout-watch/global_actions.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/res/res/layout-watch/global_actions.xml b/core/res/res/layout-watch/global_actions.xml
index b7479d848465..d8e569b40059 100644
--- a/core/res/res/layout-watch/global_actions.xml
+++ b/core/res/res/layout-watch/global_actions.xml
@@ -13,9 +13,16 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:clipToPadding="false"
+ android:fillViewport="true">
+ <LinearLayout
+ android:id="@+id/actions_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:showDividers="middle"
android:divider="@drawable/global_action_item_divider"
android:orientation="vertical"/>
+</ScrollView>