Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   Copyright (C) 2016 The Android Open Source Project
      4 
      5   Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
      6   except in compliance with the License. You may obtain a copy of the License at
      7 
      8        http://www.apache.org/licenses/LICENSE-2.0
      9 
     10   Unless required by applicable law or agreed to in writing, software distributed under the
     11   License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     12   KIND, either express or implied. See the License for the specific language governing
     13   permissions and limitations under the License.
     14   -->
     15 
     16 <FrameLayout
     17     xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:orientation="vertical"
     19     android:layout_width="match_parent"
     20     android:layout_height="match_parent"
     21     android:paddingStart="20dp"
     22     android:paddingEnd="20dp">
     23 
     24     <EditText
     25         android:id="@android:id/edit"
     26         android:maxLines="1"
     27         android:layout_width="match_parent"
     28         android:layout_height="wrap_content"/>
     29 
     30 </FrameLayout>