78 lines
2.3 KiB
XML
78 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/*
|
|
** Copyright 2012, 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
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
** See the License for the specific language governing permissions and
|
|
** limitations under the License.
|
|
*/
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/viewGroup"
|
|
>
|
|
|
|
<View
|
|
android:id="@+id/view"
|
|
android:layout_width="50dip"
|
|
android:layout_height="50dip"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="80dip"
|
|
android:layout_height="80dip"
|
|
android:includeFontPadding="false"
|
|
android:textSize="10dip"
|
|
android:textStyle="normal"
|
|
android:fontFamily="sans-serif"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<EditText
|
|
android:id="@+id/edit"
|
|
android:layout_width="80dip"
|
|
android:layout_height="80dip"
|
|
android:maxLines="1000"
|
|
android:scrollbars="vertical"
|
|
android:focusable="false"
|
|
android:includeFontPadding="false"
|
|
android:textSize="10dip"
|
|
android:textStyle="normal"
|
|
android:lineSpacingExtra="20dp"
|
|
android:lineSpacingMultiplier="0.0"
|
|
android:fontFamily="sans-serif"
|
|
android:background="@null"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<EditText
|
|
android:id="@+id/editText"
|
|
android:singleLine="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/selectableText"
|
|
android:textIsSelectable="true"
|
|
android:text="selectable text"
|
|
android:singleLine="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
</LinearLayout>
|