Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View matheusjardimb's full-sized avatar
😎

Matheus Jardim Bernardes matheusjardimb

😎
View GitHub Profile
@matheusjardimb
matheusjardimb / Android Play incondicional sound.java
Last active August 29, 2015 14:03
Android Play incondicional sound
final String packageName = getPackageName();
Uri alarmSound = Uri.parse("android.resource://" + packageName + "/" + R.raw.my_audio);
MediaPlayer mp = new MediaPlayer();
mp.setDataSource(this, alarmSound);
mp.setAudioStreamType(AudioManager.STREAM_ALARM);
mp.prepare();
mp.start();
AudioManager mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
@matheusjardimb
matheusjardimb / search.xml
Last active August 29, 2015 14:04
SearchView xml menu
<menu xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/search"
android:title="@string/my_title"
app:actionViewClass="android.widget.SearchView"
android:showAsAction="always"
app:showAsAction="always"
@matheusjardimb
matheusjardimb / edit_text.xml
Last active August 29, 2015 14:04
EditText style
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true"
android:drawable="@drawable/textfield_search_selected_holo_light" />
<item android:drawable="@drawable/textfield_search_default_holo_light" />
</selector>
@matheusjardimb
matheusjardimb / YoutubeUtils
Created November 14, 2014 13:59
Get Youtube thumb url from video Id
/**
*
* Created by matheusjardimb on 14/11/2014.
*/
public class YoutubeUtils {
private static final String BASE_URL = "http://img.youtube.com/vi/";
private static final String EXT = ".jpg";
public static String getThumbUrl(String videoId) {
return getThumbUrl(videoId, VideoSize.DEFAULT);
@matheusjardimb
matheusjardimb / android_colors
Last active August 29, 2015 14:12
Great Flat Colors
<?xml version="1.0" encoding="utf-8"?>
<!--
Great set of colors from from http://flatuicolors.com/ and converted into Android colors.xml
-->
<resources>
<color name="turquoise">#1abc9c</color>
<color name="emerald">#2ecc71</color>
<color name="peter_river">#3498db</color>
@matheusjardimb
matheusjardimb / OneNmae
Created December 1, 2015 17:32
OneName
Verifying that +matheusjardimb is my blockchain ID. https://onename.com/matheusjardimb
VAGA:
- Startup contrata desenvolvedor backend
Perfil:
Profissional comunicativo e ágil, capaz de se adequar ao ambiente dinâmico de uma start-up.
Motivado, pró-ativo e atento às novas tecnologias e tendências.
Esperamos ensino superior na área (cursando ou concluído) além de experiência com desenvolvimento web.
Precisará ter facilidade com o inglês e capacidade de se organizar.
Responsabilidades:
@matheusjardimb
matheusjardimb / printKeyHash.java
Created January 4, 2017 10:39
Android - Print Key Hash
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import android.util.Base64;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
//...
private void printKeyHash() {
@matheusjardimb
matheusjardimb / MyActivity.java
Last active April 12, 2018 21:25
SearchView Activity
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.search, menu);
final MenuItem item = menu.findItem(R.id.search);
if (item != null) {
final View actionView = item.getActionView();
if (actionView != null) {
SearchView searchView = (SearchView) actionView;
@matheusjardimb
matheusjardimb / covbadge.json
Last active July 7, 2023 20:33
js-exact-dependency-action/coverage.xml
{"schemaVersion":1,"label":"Coverage","message":"100%","color":"hsl(120, 100%, 40%)"}