diff options
-rw-r--r-- | core/res/res/layout-watch/global_actions.xml | 9 |
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> |