View CursorRecyclerAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jeevuz.recyclerview; | |
import android.database.ContentObserver; | |
import android.database.Cursor; | |
import android.database.DataSetObserver; | |
import android.os.Handler; | |
import android.support.v7.widget.RecyclerView; | |
import android.widget.Filter; | |
import android.widget.FilterQueryProvider; | |
import android.widget.Filterable; |
View Remove ripple effect from CheckBox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void removeRippleEffectFromCheckBox(CheckBox checkBox) { | |
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | |
Drawable drawable = checkBox.getBackground(); | |
if (drawable instanceof RippleDrawable) { | |
drawable = ((RippleDrawable) drawable).findDrawableByLayerId(0); | |
checkBox.setBackground(drawable); | |
} | |
} | |
} |
View Request contact't name, number and thumbnail path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Start activity for result to pick contact phone | |
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.CommonDataKinds.Phone.CONTENT_URI); | |
startActivityForResult(intent, PICK_CONTACT_REQUEST_CODE); | |
// In the onActivityResult | |
case PICK_CONTACT_REQUEST_CODE: | |
if (resultCode == RESULT_OK) { | |
// Get the URI that points to the selected contact | |
Uri contactDataUri = data.getData(); |
View Timestamp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import android.support.annotation.NonNull; | |
import android.text.TextUtils; | |
import java.text.DateFormat; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import java.util.Locale; |
View ConnectionUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.mobileup.grushasdk.utils; | |
import android.content.Context; | |
import android.net.ConnectivityManager; | |
import android.net.Network; | |
import android.net.NetworkInfo; | |
import android.net.wifi.WifiManager; | |
/** | |
* @author Vasili Chyrvon (vasili.chyrvon@gmail.com) |
View ImagePickerWithCrop.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.utils; | |
import android.app.Activity; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.pm.ResolveInfo; | |
import android.content.res.AssetFileDescriptor; | |
import android.database.Cursor; | |
import android.graphics.Bitmap; | |
import android.graphics.BitmapFactory; |
View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build files and folders | |
build/ | |
.gradle/ | |
# Local | |
local.properties | |
captures/ | |
# Idea files | |
.idea/ |
View EnterStringDialogFragment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.mobileup.myalarm2.ui.dialog; | |
import android.app.Activity; | |
import android.app.Dialog; | |
import android.os.Bundle; | |
import android.support.annotation.NonNull; | |
import android.support.annotation.StringRes; | |
import android.support.v7.app.AlertDialog; | |
import android.support.v7.app.AppCompatDialogFragment; | |
import android.widget.EditText; |
View ProgressDimDialogFragment.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dialog fragment showing progress widget on dimmed screen. | |
* @author Vasili Chyrvon (vasili.chyrvon@gmail.com) | |
*/ | |
class ProgressDimDialogFragment : AppCompatDialogFragment() { | |
companion object { | |
val TAG = "ProgressDimDialogFragment" | |
private val ARGS_DISPATCH_BACK_PRESS = "args_dispatches_back_press" |
OlderNewer