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 final class ActionModeForReply implements ActionMode.Callback { | |
@Override | |
public boolean onCreateActionMode(ActionMode mode, Menu menu) { | |
//Used to put dark icons on light action bar | |
menu.add(R.string.send_now) | |
.setIcon(R.drawable.ic_menu_send_now) | |
.setShowAsAction(MenuItem.SHOW_AS_ACTION_WITH_TEXT | MenuItem.SHOW_AS_ACTION_ALWAYS); | |
return true; |
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
/** | |
* 친숙한 시간 표기법. | |
* @param date 과거시간데이터. | |
* @return 한국어로 친숙한 시간 설명 출력. | |
* @exception 미래값을 넣으면 {@link IllegalArgumentException} 발생. | |
*/ | |
public static String toFriendlyDateTimeString(DateTime date){ | |
DateTime now = new DateTime(); | |
if (date.isAfterNow()) | |
throw new IllegalArgumentException("Future DateTime cannot be not handled."); |
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
public class NullableBooleanToVisibilityConverter : IValueConverter | |
{ | |
/// <summary> | |
/// Converts a value. | |
/// </summary> | |
/// <returns> | |
/// A converted value. If the method returns null, the valid null value is used. | |
/// </returns> | |
/// <param name="value">The value produced by the binding source.</param> | |
/// <param name="targetType">The type of the binding target property.</param> |
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
public class InverseBooleanConverter : IValueConverter | |
{ | |
/// <summary> | |
/// Converts a Boolean value as inversed. | |
/// </summary> | |
/// <returns> | |
/// A converted value. If the method returns null, the valid null value is used. | |
/// </returns> | |
/// <param name="value">The value produced by the binding source.</param> |
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 class PushAsyncTask extends AsyncTask<Void, Void, Void>{ | |
protected Void doInBackground(Void... voids) { | |
HttpPost httpPost = new HttpPost("https://<DOMAIN>.azure-mobile.net/tables/<TABLE-NAME>"); | |
httpPost.setHeader("Accept", "application/json"); | |
httpPost.setHeader("Content-type", "application/json"); | |
httpPost.setHeader("X-ZUMO-APPLICATION", "YOUR-AZURE-MOBILESERVICE-KEY-IS-HERE"); | |
JSONObject jsonObject = new JSONObject(); | |
try { |
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
function insert(item, user, request) { | |
request.execute({ | |
success: function() { | |
// Write to the response and then send the notification in the background | |
request.respond(); | |
if(item.platform == "ANDROID") { | |
push.gcm.send(item.channel, item.text, { | |
success: function(response) { | |
console.log('Push sent: ', item.channel, response, 'time: ', new Date()); | |
}, error: function(error) { |
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
using UnityEngine; | |
using System.Collections; | |
public class DragAndDrop : MonoBehaviour | |
{ | |
private bool _mouseState; | |
public GameObject Target; | |
public Vector3 screenSpace; | |
public Vector3 offset; |
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
/// <summary> | |
/// Value converter that translates true to <see cref="Visibility.Visible"/> and false to | |
/// <see cref="Visibility.Collapsed"/>. | |
/// </summary> | |
public sealed class BooleanToVisibilityConverter : IValueConverter | |
{ | |
public object Convert(object value, Type targetType, object parameter, string language) | |
{ | |
var visible = (value is bool && (bool)value) ? Visibility.Visible : Visibility.Collapsed; | |
if (parameter == null) |
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
/** | |
* 아바타 셋업. | |
* | |
* @param avatarLayout | |
* @param avatar | |
*/ | |
private void setAvatar(RelativeLayout avatarLayout, Avatar avatar) { | |
int resourceId; | |
// Head | |
ImageView imageViewHead = (ImageView) avatarLayout.findViewById(R.id.imageViewHead); |
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
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<ImageView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:id="@+id/imageViewWholeBack"/> |
OlderNewer