Skip to content

Instantly share code, notes, and snippets.

View PrashamTrivedi's full-sized avatar
🏠
Working from home

Prasham Trivedi PrashamTrivedi

🏠
Working from home
View GitHub Profile

Using: Android Studio 2.2 beta 5.

Tip: Go to logcat > Edit Filter Configuration > Create a new one or update an existing > Enter below value in Log Tag> Check Regex Checkbox

Devices

Vivo - ^(?!.*(MALI|FeatureProxyBase|STATUSBAR_DEBUG|Surface|GraphicBuffer|OpenGLRenderer|MaliEGL|NativeCrypto|InputMethodManager|OpenSSLLib|Proxy|Posix|MPlugin|jianghong|ViewRootImpl|libc-netbsd|PhoneWindow)).*$

Gionee (Added Vivo Tags for safety) - ^(?!.*(MALI|FeatureProxyBase|STATUSBAR_DEBUG|Surface|GraphicBuffer|OpenGLRenderer|MaliEGL|NativeCrypto|InputMethodManager|OpenSSLLib|Proxy|Posix|MPlugin|jianghong|ViewRootImpl|libc-netbsd|PhoneWindow|ADB_SERVICES|SensorService|SignalClusterView|NetworkController|BatteryService|wpa_supplicant|WifiHW|WifiStateMachine|Tethering|wifi2agps|agps|SettingsInterface|WifiAutoJoinController|ActivityThread)).*$

@PrashamTrivedi
PrashamTrivedi / Callbacks.kt
Last active April 12, 2017 05:58
Kotlin examples for my post
//DataRepository.kt, which handles all db handling, where I have passed 3 callbacks, finished, error or maximum tabs reached
public fun addTab(tabModelToInsert: TabModel,
onFinished: (tabModel: TabModel) -> Unit = {},
onError: (tabModel: TabModel, message: String) -> Unit = { tabModel, message -> },
onMaxTabReached: (tabModel: TabModel) -> Unit = {}) {
if (canAddMoreTabs()) {
val currentMaxId = getCurrentMaxId() ?: 0
try {
realm.executeTransaction {
addTabModelToRealm()
//DataRepository.kt, which handles all db handling, where I have passed 3 callbacks, finished, error or maximum tabs reached
public fun addTab(tabModelToInsert: TabModel,
onFinished: (tabModel: TabModel) -> Unit = {},
onError: (tabModel: TabModel, message: String) -> Unit = { tabModel, message -> },
onMaxTabReached: (tabModel: TabModel) -> Unit = {}) {
if (canAddMoreTabs()) {
val currentMaxId = getCurrentMaxId() ?: 0
try {
realm.executeTransaction {
addTabModelToRealm()
//Part of Functions.kt, this and below 3 functions helps to create dialog.
public fun Context.showDialog(cancelable: Boolean = false, cancelableTouchOutside: Boolean = false, builderFunction: AlertDialog.Builder.() -> Any) {
val builder = AlertDialog.Builder(this)
builder.builderFunction()
val dialog = builder.create();
dialog.setCancelable(cancelable)
dialog.setCanceledOnTouchOutside(cancelableTouchOutside)
dialog.show()
}
//Functions.kt
public fun Context.setNotification(id: Int = 0, builderMethod: NotificationCompat.Builder.() -> Any) {
val builder = NotificationCompat.Builder(this)
builder.apply {
builderMethod()
}
notificationManager().notify(id, builder.build())
}
//FCM Service.kt
this@MyFCMService.setNotification(2488, {
@PrashamTrivedi
PrashamTrivedi / KitkatFilesHandler.java
Last active June 17, 2017 16:04
FilePicker Kitkat
package com.zoomimob_faculty.utils;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.os.Environment;
import android.provider.DocumentsContract;
@PrashamTrivedi
PrashamTrivedi / RecyclerViewTarget.java
Last active September 12, 2017 21:19
Target file to properly cover recyclerview in showcase view(https://github.com/amlcurran/ShowcaseView)
/**
* Target file for ShowcaseView library, it will always points to first item of recyclerview child.
*/
public class RecyclerViewTarget implements Target {
RecyclerView recyclerView;
public RecyclerViewTarget(RecyclerView recyclerView) {
this.recyclerView = recyclerView;
}
@PrashamTrivedi
PrashamTrivedi / Spaniard.kt
Last active September 14, 2017 08:16
Utils for creating spans with minimum texts
package com.spaniard
import android.text.Spannable
import android.text.SpannableStringBuilder
import android.text.style.CharacterStyle
class Spaniard(val originalString: String) {
var spannableStringBuilder = SpannableStringBuilder(originalString)
@PrashamTrivedi
PrashamTrivedi / io17Modified.xml
Created November 29, 2017 07:33
Modified intellij theme for io17, with Font Ligatures, Logcat colors and changed size
<scheme name="io17" version="142" parent_scheme="Darcula">
<option name="FONT_SCALE" value="1.0" />
<metaInfo>
<property name="created">2017-11-13T20:44:16</property>
<property name="ide">AndroidStudio</property>
<property name="ideVersion">3.0.0.18</property>
<property name="modified">2017-11-29T13:01:35</property>
<property name="originalScheme">Darcula</property>
</metaInfo>
<option name="EDITOR_FONT_SIZE" value="16" />