Update to follow API.

Also a new list demo.

Change-Id: I0c59fc6f50009fcba183f0b5af61ec50d5888240
This commit is contained in:
Dianne Hackborn
2010-10-26 12:47:13 -07:00
parent ca04e3adec
commit b252273014
3 changed files with 65 additions and 1 deletions

View File

@@ -1406,6 +1406,13 @@
</intent-filter>
</activity>
<activity android:name=".view.List17" android:label="Views/Lists/17. Activate items">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity android:name=".view.ExpandableList1" android:label="Views/Expandable Lists/1. Custom Adapter">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@@ -118,7 +118,7 @@ public class ClipboardSample extends Activity {
void updateClipData() {
ClipData clip = mClipboard.getPrimaryClip();
String[] mimeTypes = clip != null ? clip.filterMimeTypes("*/*") : null;
String[] mimeTypes = clip != null ? clip.getDescription().filterMimeTypes("*/*") : null;
mMimeTypes.setText("");
if (mimeTypes != null) {
for (int i=0; i<mimeTypes.length; i++) {

View File

@@ -0,0 +1,57 @@
/*
* Copyright (C) 2010 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.
*/
package com.example.android.apis.view;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
/**
* A list view where the last item the user clicked is placed in
* the "activated" state, causing its background to highlight.
*/
public class List17 extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Use the built-in layout for showing a list item with a single
// line of text whose background is changes when activated.
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_activated_1, mStrings));
getListView().setTextFilterEnabled(true);
// Tell the list view to show one checked/activated item at a time.
getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
// Start with first item activated.
// Make the newly clicked item the currently selected one.
getListView().setItemChecked(0, true);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// Make the newly clicked item the currently selected one.
getListView().setItemChecked(position, true);
}
private String[] mStrings = Cheeses.sCheeseStrings;
}