Back to project page Android-Iconics.
The source code is released under:
Apache License
If you think the Android project Android-Iconics listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Mike Penz//from w w w . j a v a 2 s .c o m * * 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.mikepenz.iconics.sample; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.support.v7.widget.DefaultItemAnimator; import android.support.v7.widget.GridLayoutManager; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.Toolbar; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.view.animation.LayoutAnimationController; import com.mikepenz.aboutlibraries.Libs; import com.mikepenz.aboutlibraries.ui.LibsActivity; import com.mikepenz.iconics.Iconics; import com.mikepenz.iconics.IconicsDrawable; import com.mikepenz.iconics.sample.adapter.IconAdapter; import com.mikepenz.iconics.typeface.FontAwesome; import com.mikepenz.iconics.typeface.ITypeface; import java.util.ArrayList; public class MainActivity extends ActionBarActivity { private ArrayList<String> icons = new ArrayList<String>(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Handle Toolbar Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(false); // Init and Setup RecyclerView RecyclerView mRecyclerView = (RecyclerView) findViewById(R.id.list); mRecyclerView.setLayoutManager(new GridLayoutManager(this, 2)); mRecyclerView.setItemAnimator(new DefaultItemAnimator()); IconAdapter mAdapter = new IconAdapter(icons, R.layout.row_icon, MainActivity.this); mRecyclerView.setAdapter(mAdapter); //add all icons of all registered Fonts to the list for (ITypeface font : Iconics.getRegisteredFonts()) { for (String icon : font.getIcons()) { icons.add(icon); } } mAdapter.setIcons(icons); // Everyone Loves animations :D Start some here :D Animation fadeIn = AnimationUtils.loadAnimation(MainActivity.this, android.R.anim.slide_in_left); fadeIn.setDuration(250); LayoutAnimationController layoutAnimationController = new LayoutAnimationController(fadeIn); mRecyclerView.setLayoutAnimation(layoutAnimationController); mRecyclerView.startLayoutAnimation(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu items for use in the action bar MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.menu_main, menu); MenuItem menuItem = menu.findItem(R.id.action_opensource); menuItem.setIcon(new IconicsDrawable(this, FontAwesome.Icon.faw_github).actionBarSize().color(Color.WHITE)); //menuItem.setIcon(new IconicsDrawable(this, "faw-github").actionBarSize().color(Color.WHITE)); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle presses on the action bar items switch (item.getItemId()) { case R.id.action_opensource: //Create an intent with context and the Activity class Intent i = new Intent(getApplicationContext(), LibsActivity.class); //Pass the fields of your application to the lib so it can find all external lib information i.putExtra(Libs.BUNDLE_FIELDS, Libs.toStringArray(R.string.class.getFields())); //Display the library license (OPTIONAL i.putExtra(Libs.BUNDLE_LICENSE, true); //Set a title (OPTIONAL) i.putExtra(Libs.BUNDLE_TITLE, getString(R.string.action_opensource)); //Pass your theme (OPTIONAL) i.putExtra(Libs.BUNDLE_THEME, R.style.AboutTheme); //start the activity startActivity(i); return true; case R.id.action_playground: Intent ip = new Intent(getApplicationContext(), PlaygroundActivity.class); startActivity(ip); return true; default: return super.onOptionsItemSelected(item); } } }