blob: f7062f06fd2086f80251f5e35b9cd60a4bea41c0 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Fan Zhangf57e1672017-07-12 10:18:54 -07007
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08008 http://www.apache.org/licenses/LICENSE-2.0
Fan Zhangf57e1672017-07-12 10:18:54 -07009
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Fan Zhangf57e1672017-07-12 10:18:54 -070017<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080019 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
Matthew Fritze68125812016-09-14 18:00:41 -070021 android:paddingStart="20dp"
22 android:paddingEnd="20dp"
23 android:paddingTop="16dp"
Fan Zhangf57e1672017-07-12 10:18:54 -070024 android:paddingBottom="12dp">
Matthew Fritze68125812016-09-14 18:00:41 -070025
26 <EditText
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080027 android:id="@+id/edittext"
Romain Guy33787152010-01-08 15:07:10 -080028 android:layout_width="match_parent"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080029 android:layout_height="wrap_content"
Fan Zhangf57e1672017-07-12 10:18:54 -070030 android:inputType="textCapSentences"
hughchen78790472019-07-17 14:34:00 +080031 android:minHeight="@dimen/min_tap_target_size"
Eric Fischerc27b12c2009-08-20 10:17:28 -070032 android:maxLength="50"
Fan Zhangf57e1672017-07-12 10:18:54 -070033 android:singleLine="true" />
Eric Fischerc27b12c2009-08-20 10:17:28 -070034</LinearLayout>