Files
android_development/samples/ApiDemos/res/layout/clipboard.xml
Dianne Hackborn 3e4a5c8a5e Update to follow clipboard APIs.
Change-Id: I905a499f2697bea218b6d4c3f8ec339fbe52c916
2010-08-27 11:06:05 -07:00

108 lines
3.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2007 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.
-->
<!--
Demonstrates clipboard.
See corresponding Java code:
com.example.android.apis.content.ClipboardSample
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button android:id="@+id/copy_styled_text"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:onClick="pasteStyledText"
android:text="@string/copy_text" />
<TextView
android:id="@+id/styled_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textStyle="normal" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button android:id="@+id/copy_plain_text"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:onClick="pastePlainText"
android:text="@string/copy_text" />
<TextView
android:id="@+id/plain_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textStyle="normal" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button android:id="@+id/copy_intent"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:onClick="pasteIntent"
android:text="@string/copy_intent" />
<Button android:id="@+id/copy_uri"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:onClick="pasteUri"
android:text="@string/copy_uri" />
</LinearLayout>
<Spinner android:id="@+id/clip_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
android:prompt="@string/clip_type_prompt"
/>
<TextView
android:id="@+id/clip_mime_types"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:textStyle="normal"
/>
<EditText
android:id="@+id/clip_text"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:textStyle="normal"
/>
</LinearLayout>