Java Code Examples for android.widget.Gallery#setAdapter()
The following examples show how to use
android.widget.Gallery#setAdapter() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: YalpStore File: FullscreenImageActivity.java License: GNU General Public License v2.0 | 6 votes |
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); if (null == DetailsActivity.app) { Log.w(getClass().getSimpleName(), "No app stored"); finish(); return; } Gallery gallery = ((Gallery) findViewById(R.id.gallery)); gallery.setAdapter(new FullscreenImageAdapter( this, DetailsActivity.app.getScreenshotUrls(), getWindowManager().getDefaultDisplay().getWidth(), getWindowManager().getDefaultDisplay().getHeight() )); gallery.setSelection(intent.getIntExtra(INTENT_SCREENSHOT_NUMBER, 0)); }
Example 2
Source Project: codeexamples-android File: Gallery2.java License: Eclipse Public License 1.0 | 6 votes |
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.gallery_2); // Get a cursor with all people Cursor c = getContentResolver().query(Contacts.CONTENT_URI, CONTACT_PROJECTION, null, null, null); startManagingCursor(c); SpinnerAdapter adapter = new SimpleCursorAdapter(this, // Use a template that displays a text view android.R.layout.simple_gallery_item, // Give the cursor to the list adatper c, // Map the NAME column in the people database to... new String[] {Contacts.DISPLAY_NAME}, // The "text1" view defined in the XML template new int[] { android.R.id.text1 }); Gallery g = (Gallery) findViewById(R.id.gallery); g.setAdapter(adapter); }
Example 3
Source Project: codeexamples-android File: ImageSwitcher1.java License: Eclipse Public License 1.0 | 6 votes |
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.image_switcher_1); mSwitcher = (ImageSwitcher) findViewById(R.id.switcher); mSwitcher.setFactory(this); mSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); mSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); Gallery g = (Gallery) findViewById(R.id.gallery); g.setAdapter(new ImageAdapter(this)); g.setOnItemSelectedListener(this); }
Example 4
Source Project: 4pdaClient-plus File: BbCodesBasePanel.java License: Apache License 2.0 | 5 votes |
public BbCodesBasePanel(Context context, Gallery gallery, EditText editText, IGetBitmap getBitmap) { mContext = context; m_GetBitmapFunc = getBitmap; initVars(); gallery.setAdapter(new ImageAdapter(context, getImages())); txtPost = editText; gallery.setSelection(3, true); }