/packages/apps/Gallery3D/src/com/cooliris/media/ |
H A D | BitmapTexture.java | 30 protected Bitmap load(RenderView view) { argument
|
H A D | ResourceTexture.java | 40 protected Bitmap load(RenderView view) { argument 46 bitmap = BitmapFactory.decodeResource(view.getResources(), mResourceId, options); 48 InputStream inputStream = view.getResources().openRawResource(mResourceId);
|
H A D | SimpleStringTexture.java | 47 protected Bitmap load(RenderView view) { argument
|
H A D | LoadingLayer.java | 165 public void generate(RenderView view, RenderView.Lists lists) { argument 172 view.loadTexture(view.getResource(textures[i], false)); 176 view.loadTexture(view.getResource(textures[i])); 181 public void renderBlended(RenderView view, GL11 gl) { argument 184 // Request that the view upload all loaded textures. 185 view.processAllTextures(); 191 if (view.getResource(textures[i]).mState != Texture.STATE_LOADED) { 198 if (view [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
H A D | SearchableItemPreference.java | 22 import android.view.View; 42 protected void onBindView(View view) { argument 43 super.onBindView(view); 44 ImageView icon = (ImageView) view.findViewById(R.id.icon);
|
/packages/apps/Settings/src/com/android/settings/ |
H A D | IconPreferenceScreen.java | 24 import android.view.View; 44 public void onBindView(View view) { argument 45 super.onBindView(view); 46 ImageView imageView = (ImageView) view.findViewById(R.id.icon);
|
H A D | ProgressCategory.java | 22 import android.view.View; 36 public void onBindView(View view) { argument 37 super.onBindView(view); 38 View textView = view.findViewById(R.id.scanning_text); 39 View progressBar = view.findViewById(R.id.scanning_progress);
|
H A D | EditPinPreference.java | 25 import android.view.View; 52 protected void onBindDialogView(View view) { argument 53 super.onBindDialogView(view); 55 final EditText editText = (EditText) view.findViewById(android.R.id.edit);
|
/packages/apps/AccountsAndSyncSettings/src/com/android/settings/ |
H A D | ProviderPreference.java | 24 import android.view.View; 49 protected void onBindView(View view) { argument 50 super.onBindView(view); 51 mProviderIconView = (ImageView) view.findViewById(R.id.providerIcon);
|
H A D | SyncActivityTooManyDeletes.java | 25 import android.view.View; 26 import android.view.ViewGroup; 110 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
H A D | BluetoothOppTransferAdapter.java | 45 import android.view.View; 54 * The only real work done by this class is to construct a custom view for the 66 public void bindView(View view, Context context, Cursor cursor) { argument 70 ImageView iv = (ImageView)view.findViewById(R.id.transfer_icon); 84 TextView tv = (TextView)view.findViewById(R.id.transfer_title); 93 tv = (TextView)view.findViewById(R.id.targetdevice); 104 tv = (TextView)view.findViewById(R.id.complete_text); 125 tv = (TextView)view.findViewById(R.id.complete_date);
|
/packages/apps/Calculator/src/com/android/calculator2/ |
H A D | EventListener.java | 19 import android.view.View; 20 import android.view.KeyEvent; 21 import android.view.View.OnClickListener; 22 import android.view.View.OnLongClickListener; 23 import android.view.View.OnKeyListener; 38 public void onClick(View view) { argument 39 int id = view.getId(); 56 if (view instanceof Button) { 57 String text = ((Button) view).getText().toString(); 72 public boolean onLongClick(View view) { argument 84 onKey(View view, int keyCode, KeyEvent keyEvent) argument [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
H A D | AlertAdapter.java | 24 import android.view.View; 35 public void bindView(View view, Context context, Cursor cursor) { argument 38 View stripe = view.findViewById(R.id.vertical_stripe); 41 textView = (TextView) view.findViewById(R.id.event_title); 45 View repeatContainer = view.findViewById(R.id.repeat_icon); 57 AgendaAdapter.updateReminder(view, context, cursor.getLong(AlertActivity.INDEX_BEGIN), 68 updateView(context, view, eventName, location, startMillis, endMillis, allDay); 71 public static void updateView(Context context, View view, String eventName, String location, argument 81 textView = (TextView) view.findViewById(R.id.event_title); 97 textView = (TextView) view [all...] |
H A D | AgendaAdapter.java | 25 import android.view.View; 60 public void bindView(View view, Context context, Cursor cursor) { argument 63 // Listview may get confused and pass in a different type of view since 65 Object tag = view.getTag(); 67 holder = (ViewHolder) view.getTag(); 72 view.setTag(holder); 73 holder.title = (TextView) view.findViewById(R.id.title); 74 holder.when = (TextView) view.findViewById(R.id.when); 75 holder.where = (TextView) view.findViewById(R.id.where); 131 View repeatContainer = view [all...] |
H A D | EmailAddressAdapter.java | 27 import android.view.View; 66 public final void bindView(View view, Context context, Cursor cursor) { argument 67 ((TextView) view).setText(makeDisplayString(cursor));
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
H A D | ViewHelper.java | 19 import android.view.View; 28 void setView(View view) { argument 29 mView = view;
|
/packages/apps/IM/src/com/android/im/app/ |
H A D | ChatBackgroundMaker.java | 27 import android.view.View; 42 public void setBackground(MessageView view, String contact, int type) { argument 43 View msgText = view.findViewById(R.id.message);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
H A D | DeliveryReportAdapter.java | 22 import android.view.LayoutInflater; 23 import android.view.View; 24 import android.view.ViewGroup; 40 public View getView(int position, View view, ViewGroup viewGroup) { argument 44 if (view == null) { 49 if (view instanceof DeliveryReportListItem) { 50 listItem = (DeliveryReportListItem) view; 52 return view;
|
H A D | Presenter.java | 33 public Presenter(Context context, ViewInterface view, Model model) { argument 35 mView = view; 45 public void setView(ViewInterface view) { argument 46 mView = view;
|
H A D | PresenterFactory.java | 36 ViewInterface view, Model model) { 45 return (Presenter) constructor.newInstance(context, view, model); 35 getPresenter(String className, Context context, ViewInterface view, Model model) argument
|
/packages/apps/Browser/src/com/android/browser/ |
H A D | DownloadTouchIcon.java | 48 public DownloadTouchIcon(Tab tab, ContentResolver cr, WebView view) { argument 52 mOriginalUrl = view.getOriginalUrl(); 53 mUrl = view.getUrl(); 54 mUserAgent = view.getSettings().getUserAgentString();
|
/packages/apps/Email/src/com/android/email/ |
H A D | EmailAddressAdapter.java | 29 import android.view.View; 63 public void bindView(View view, Context context, Cursor cursor) { argument 64 TextView text1 = (TextView)view.findViewById(R.id.text1); 65 TextView text2 = (TextView)view.findViewById(R.id.text2);
|
/packages/apps/HTMLViewer/src/com/android/htmlviewer/ |
H A D | HTMLViewerActivity.java | 24 import android.view.Window; 98 // Check the intent for the content to view 122 // the default implementation requires each view to have an id. As the 125 // warning like this, "couldn't save which view has focus because the 126 // focused view XXX has no id". 147 public void onReceivedTitle(WebView view, String title) { argument 152 public void onProgressChanged(WebView view, int newProgress) { argument
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
H A D | BluetoothDevicePreference.java | 24 import android.view.View; 106 protected void onBindView(View view) { argument 107 // Disable this view if the bluetooth enable/disable preference view is off 112 super.onBindView(view); 114 ImageView btClass = (ImageView) view.findViewById(R.id.btClass);
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
H A D | PowerGaugePreference.java | 25 import android.view.View; 77 protected void onBindView(View view) { argument 78 super.onBindView(view); 80 ImageView appIcon = (ImageView) view.findViewById(R.id.appIcon); 86 ImageView appGauge = (ImageView) view.findViewById(R.id.appGauge); 89 TextView percentView = (TextView) view.findViewById(R.id.percent);
|