Android examples for Android OS:Bundle
count Indexes in Bundle
//package com.book2s; import android.os.Bundle; public class Main { public static int countIndexes(Bundle bundle, String baseKey) { int count = 0; while (bundle.containsKey(baseKey + count)) count++;//from w w w .j a v a 2s .co m return count; } }