use of android.content.res.Resources in project Signal-Android by WhisperSystems.
the class PduParser method parsePartHeaders.
/**
* Parse part's headers.
*
* @param pduDataStream pdu data input stream
* @param part to store the header informations of the part
* @param length length of the headers
* @return true if parse successfully, false otherwise
*/
protected static boolean parsePartHeaders(ByteArrayInputStream pduDataStream, PduPart part, int length) {
assert (null != pduDataStream);
assert (null != part);
assert (length > 0);
/**
* From oma-ts-mms-conf-v1_3.pdf, chapter 10.2.
* A name for multipart object SHALL be encoded using name-parameter
* for Content-Type header in WSP multipart headers.
* In decoding, name-parameter of Content-Type SHALL be used if available.
* If name-parameter of Content-Type is not available,
* filename parameter of Content-Disposition header SHALL be used if available.
* If neither name-parameter of Content-Type header nor filename parameter
* of Content-Disposition header is available,
* Content-Location header SHALL be used if available.
*
* Within SMIL part the reference to the media object parts SHALL use
* either Content-ID or Content-Location mechanism [RFC2557]
* and the corresponding WSP part headers in media object parts
* contain the corresponding definitions.
*/
int startPos = pduDataStream.available();
int tempPos = 0;
int lastLen = length;
while (0 < lastLen) {
int header = pduDataStream.read();
assert (-1 != header);
lastLen--;
if (header > TEXT_MAX) {
// Number assigned headers.
switch(header) {
case PduPart.P_CONTENT_LOCATION:
/**
* From wap-230-wsp-20010705-a.pdf, chapter 8.4.2.21
* Content-location-value = Uri-value
*/
byte[] contentLocation = parseWapString(pduDataStream, TYPE_TEXT_STRING);
if (null != contentLocation) {
part.setContentLocation(contentLocation);
}
tempPos = pduDataStream.available();
lastLen = length - (startPos - tempPos);
break;
case PduPart.P_CONTENT_ID:
/**
* From wap-230-wsp-20010705-a.pdf, chapter 8.4.2.21
* Content-ID-value = Quoted-string
*/
byte[] contentId = parseWapString(pduDataStream, TYPE_QUOTED_STRING);
if (null != contentId) {
part.setContentId(contentId);
}
tempPos = pduDataStream.available();
lastLen = length - (startPos - tempPos);
break;
case PduPart.P_DEP_CONTENT_DISPOSITION:
case PduPart.P_CONTENT_DISPOSITION:
/**
* From wap-230-wsp-20010705-a.pdf, chapter 8.4.2.21
* Content-disposition-value = Value-length Disposition *(Parameter)
* Disposition = Form-data | Attachment | Inline | Token-text
* Form-data = <Octet 128>
* Attachment = <Octet 129>
* Inline = <Octet 130>
*/
/*
* some carrier mmsc servers do not support content_disposition
* field correctly
*/
Resources resources = Resources.getSystem();
int id = resources.getIdentifier("config_mms_content_disposition_support", "boolean", "android");
Log.w("PduParser", "config_mms_content_disposition_support ID: " + id);
boolean contentDisposition = (id != 0) && (resources.getBoolean(id));
Log.w("PduParser", "Content Disposition supported: " + contentDisposition);
if (contentDisposition) {
int len = parseValueLength(pduDataStream);
pduDataStream.mark(1);
int thisStartPos = pduDataStream.available();
int thisEndPos = 0;
int value = pduDataStream.read();
if (value == PduPart.P_DISPOSITION_FROM_DATA) {
part.setContentDisposition(PduPart.DISPOSITION_FROM_DATA);
} else if (value == PduPart.P_DISPOSITION_ATTACHMENT) {
part.setContentDisposition(PduPart.DISPOSITION_ATTACHMENT);
} else if (value == PduPart.P_DISPOSITION_INLINE) {
part.setContentDisposition(PduPart.DISPOSITION_INLINE);
} else {
pduDataStream.reset();
/* Token-text */
part.setContentDisposition(parseWapString(pduDataStream, TYPE_TEXT_STRING));
}
/* get filename parameter and skip other parameters */
thisEndPos = pduDataStream.available();
if (thisStartPos - thisEndPos < len) {
value = pduDataStream.read();
if (value == PduPart.P_FILENAME) {
//filename is text-string
part.setFilename(parseWapString(pduDataStream, TYPE_TEXT_STRING));
}
/* skip other parameters */
thisEndPos = pduDataStream.available();
if (thisStartPos - thisEndPos < len) {
int last = len - (thisStartPos - thisEndPos);
byte[] temp = new byte[last];
pduDataStream.read(temp, 0, last);
}
}
tempPos = pduDataStream.available();
lastLen = length - (startPos - tempPos);
}
break;
default:
if (LOCAL_LOGV) {
Log.v(LOG_TAG, "Not supported Part headers: " + header);
}
if (-1 == skipWapValue(pduDataStream, lastLen)) {
Log.e(LOG_TAG, "Corrupt Part headers");
return false;
}
lastLen = 0;
break;
}
} else if ((header >= TEXT_MIN) && (header <= TEXT_MAX)) {
// Not assigned header.
byte[] tempHeader = parseWapString(pduDataStream, TYPE_TEXT_STRING);
byte[] tempValue = parseWapString(pduDataStream, TYPE_TEXT_STRING);
// Check the header whether it is "Content-Transfer-Encoding".
if (true == PduPart.CONTENT_TRANSFER_ENCODING.equalsIgnoreCase(new String(tempHeader))) {
part.setContentTransferEncoding(tempValue);
}
tempPos = pduDataStream.available();
lastLen = length - (startPos - tempPos);
} else {
if (LOCAL_LOGV) {
Log.v(LOG_TAG, "Not supported Part headers: " + header);
}
// Skip all headers of this part.
if (-1 == skipWapValue(pduDataStream, lastLen)) {
Log.e(LOG_TAG, "Corrupt Part headers");
return false;
}
lastLen = 0;
}
}
if (0 != lastLen) {
Log.e(LOG_TAG, "Corrupt Part headers");
return false;
}
return true;
}
use of android.content.res.Resources in project material-dialogs by afollestad.
the class DialogInit method init.
@SuppressWarnings("ConstantConditions")
@UiThread
public static void init(final MaterialDialog dialog) {
final MaterialDialog.Builder builder = dialog.builder;
// Set cancelable flag and dialog background color
dialog.setCancelable(builder.cancelable);
dialog.setCanceledOnTouchOutside(builder.canceledOnTouchOutside);
if (builder.backgroundColor == 0) {
builder.backgroundColor = DialogUtils.resolveColor(builder.context, R.attr.md_background_color, DialogUtils.resolveColor(dialog.getContext(), R.attr.colorBackgroundFloating));
}
if (builder.backgroundColor != 0) {
GradientDrawable drawable = new GradientDrawable();
drawable.setCornerRadius(builder.context.getResources().getDimension(R.dimen.md_bg_corner_radius));
drawable.setColor(builder.backgroundColor);
dialog.getWindow().setBackgroundDrawable(drawable);
}
// Retrieve color theme attributes
if (!builder.positiveColorSet) {
builder.positiveColor = DialogUtils.resolveActionTextColorStateList(builder.context, R.attr.md_positive_color, builder.positiveColor);
}
if (!builder.neutralColorSet) {
builder.neutralColor = DialogUtils.resolveActionTextColorStateList(builder.context, R.attr.md_neutral_color, builder.neutralColor);
}
if (!builder.negativeColorSet) {
builder.negativeColor = DialogUtils.resolveActionTextColorStateList(builder.context, R.attr.md_negative_color, builder.negativeColor);
}
if (!builder.widgetColorSet) {
builder.widgetColor = DialogUtils.resolveColor(builder.context, R.attr.md_widget_color, builder.widgetColor);
}
// Retrieve default title/content colors
if (!builder.titleColorSet) {
final int titleColorFallback = DialogUtils.resolveColor(dialog.getContext(), android.R.attr.textColorPrimary);
builder.titleColor = DialogUtils.resolveColor(builder.context, R.attr.md_title_color, titleColorFallback);
}
if (!builder.contentColorSet) {
final int contentColorFallback = DialogUtils.resolveColor(dialog.getContext(), android.R.attr.textColorSecondary);
builder.contentColor = DialogUtils.resolveColor(builder.context, R.attr.md_content_color, contentColorFallback);
}
if (!builder.itemColorSet) {
builder.itemColor = DialogUtils.resolveColor(builder.context, R.attr.md_item_color, builder.contentColor);
}
// Retrieve references to views
dialog.title = (TextView) dialog.view.findViewById(R.id.md_title);
dialog.icon = (ImageView) dialog.view.findViewById(R.id.md_icon);
dialog.titleFrame = dialog.view.findViewById(R.id.md_titleFrame);
dialog.content = (TextView) dialog.view.findViewById(R.id.md_content);
dialog.recyclerView = (RecyclerView) dialog.view.findViewById(R.id.md_contentRecyclerView);
dialog.checkBoxPrompt = (CheckBox) dialog.view.findViewById(R.id.md_promptCheckbox);
// Button views initially used by checkIfStackingNeeded()
dialog.positiveButton = (MDButton) dialog.view.findViewById(R.id.md_buttonDefaultPositive);
dialog.neutralButton = (MDButton) dialog.view.findViewById(R.id.md_buttonDefaultNeutral);
dialog.negativeButton = (MDButton) dialog.view.findViewById(R.id.md_buttonDefaultNegative);
// Don't allow the submit button to not be shown for input dialogs
if (builder.inputCallback != null && builder.positiveText == null) {
builder.positiveText = builder.context.getText(android.R.string.ok);
}
// Set up the initial visibility of action buttons based on whether or not text was set
dialog.positiveButton.setVisibility(builder.positiveText != null ? View.VISIBLE : View.GONE);
dialog.neutralButton.setVisibility(builder.neutralText != null ? View.VISIBLE : View.GONE);
dialog.negativeButton.setVisibility(builder.negativeText != null ? View.VISIBLE : View.GONE);
// Set up the focus of action buttons
dialog.positiveButton.setFocusable(true);
dialog.neutralButton.setFocusable(true);
dialog.negativeButton.setFocusable(true);
if (builder.positiveFocus) {
dialog.positiveButton.requestFocus();
}
if (builder.neutralFocus) {
dialog.neutralButton.requestFocus();
}
if (builder.negativeFocus) {
dialog.negativeButton.requestFocus();
}
// Setup icon
if (builder.icon != null) {
dialog.icon.setVisibility(View.VISIBLE);
dialog.icon.setImageDrawable(builder.icon);
} else {
Drawable d = DialogUtils.resolveDrawable(builder.context, R.attr.md_icon);
if (d != null) {
dialog.icon.setVisibility(View.VISIBLE);
dialog.icon.setImageDrawable(d);
} else {
dialog.icon.setVisibility(View.GONE);
}
}
// Setup icon size limiting
int maxIconSize = builder.maxIconSize;
if (maxIconSize == -1) {
maxIconSize = DialogUtils.resolveDimension(builder.context, R.attr.md_icon_max_size);
}
if (builder.limitIconToDefaultSize || DialogUtils.resolveBoolean(builder.context, R.attr.md_icon_limit_icon_to_default_size)) {
maxIconSize = builder.context.getResources().getDimensionPixelSize(R.dimen.md_icon_max_size);
}
if (maxIconSize > -1) {
dialog.icon.setAdjustViewBounds(true);
dialog.icon.setMaxHeight(maxIconSize);
dialog.icon.setMaxWidth(maxIconSize);
dialog.icon.requestLayout();
}
// Setup divider color in case content scrolls
if (!builder.dividerColorSet) {
final int dividerFallback = DialogUtils.resolveColor(dialog.getContext(), R.attr.md_divider);
builder.dividerColor = DialogUtils.resolveColor(builder.context, R.attr.md_divider_color, dividerFallback);
}
dialog.view.setDividerColor(builder.dividerColor);
// Setup title and title frame
if (dialog.title != null) {
dialog.setTypeface(dialog.title, builder.mediumFont);
dialog.title.setTextColor(builder.titleColor);
dialog.title.setGravity(builder.titleGravity.getGravityInt());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
//noinspection ResourceType
dialog.title.setTextAlignment(builder.titleGravity.getTextAlignment());
}
if (builder.title == null) {
dialog.titleFrame.setVisibility(View.GONE);
} else {
dialog.title.setText(builder.title);
dialog.titleFrame.setVisibility(View.VISIBLE);
}
}
// Setup content
if (dialog.content != null) {
dialog.content.setMovementMethod(new LinkMovementMethod());
dialog.setTypeface(dialog.content, builder.regularFont);
dialog.content.setLineSpacing(0f, builder.contentLineSpacingMultiplier);
if (builder.linkColor == null) {
dialog.content.setLinkTextColor(DialogUtils.resolveColor(dialog.getContext(), android.R.attr.textColorPrimary));
} else {
dialog.content.setLinkTextColor(builder.linkColor);
}
dialog.content.setTextColor(builder.contentColor);
dialog.content.setGravity(builder.contentGravity.getGravityInt());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
//noinspection ResourceType
dialog.content.setTextAlignment(builder.contentGravity.getTextAlignment());
}
if (builder.content != null) {
dialog.content.setText(builder.content);
dialog.content.setVisibility(View.VISIBLE);
} else {
dialog.content.setVisibility(View.GONE);
}
}
// Setup prompt checkbox
if (dialog.checkBoxPrompt != null) {
dialog.checkBoxPrompt.setText(builder.checkBoxPrompt);
dialog.checkBoxPrompt.setChecked(builder.checkBoxPromptInitiallyChecked);
dialog.checkBoxPrompt.setOnCheckedChangeListener(builder.checkBoxPromptListener);
dialog.setTypeface(dialog.checkBoxPrompt, builder.regularFont);
dialog.checkBoxPrompt.setTextColor(builder.contentColor);
MDTintHelper.setTint(dialog.checkBoxPrompt, builder.widgetColor);
}
// Setup action buttons
dialog.view.setButtonGravity(builder.buttonsGravity);
dialog.view.setButtonStackedGravity(builder.btnStackedGravity);
dialog.view.setStackingBehavior(builder.stackingBehavior);
boolean textAllCaps;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
textAllCaps = DialogUtils.resolveBoolean(builder.context, android.R.attr.textAllCaps, true);
if (textAllCaps) {
textAllCaps = DialogUtils.resolveBoolean(builder.context, R.attr.textAllCaps, true);
}
} else {
textAllCaps = DialogUtils.resolveBoolean(builder.context, R.attr.textAllCaps, true);
}
MDButton positiveTextView = dialog.positiveButton;
dialog.setTypeface(positiveTextView, builder.mediumFont);
positiveTextView.setAllCapsCompat(textAllCaps);
positiveTextView.setText(builder.positiveText);
positiveTextView.setTextColor(builder.positiveColor);
dialog.positiveButton.setStackedSelector(dialog.getButtonSelector(DialogAction.POSITIVE, true));
dialog.positiveButton.setDefaultSelector(dialog.getButtonSelector(DialogAction.POSITIVE, false));
dialog.positiveButton.setTag(DialogAction.POSITIVE);
dialog.positiveButton.setOnClickListener(dialog);
dialog.positiveButton.setVisibility(View.VISIBLE);
MDButton negativeTextView = dialog.negativeButton;
dialog.setTypeface(negativeTextView, builder.mediumFont);
negativeTextView.setAllCapsCompat(textAllCaps);
negativeTextView.setText(builder.negativeText);
negativeTextView.setTextColor(builder.negativeColor);
dialog.negativeButton.setStackedSelector(dialog.getButtonSelector(DialogAction.NEGATIVE, true));
dialog.negativeButton.setDefaultSelector(dialog.getButtonSelector(DialogAction.NEGATIVE, false));
dialog.negativeButton.setTag(DialogAction.NEGATIVE);
dialog.negativeButton.setOnClickListener(dialog);
dialog.negativeButton.setVisibility(View.VISIBLE);
MDButton neutralTextView = dialog.neutralButton;
dialog.setTypeface(neutralTextView, builder.mediumFont);
neutralTextView.setAllCapsCompat(textAllCaps);
neutralTextView.setText(builder.neutralText);
neutralTextView.setTextColor(builder.neutralColor);
dialog.neutralButton.setStackedSelector(dialog.getButtonSelector(DialogAction.NEUTRAL, true));
dialog.neutralButton.setDefaultSelector(dialog.getButtonSelector(DialogAction.NEUTRAL, false));
dialog.neutralButton.setTag(DialogAction.NEUTRAL);
dialog.neutralButton.setOnClickListener(dialog);
dialog.neutralButton.setVisibility(View.VISIBLE);
// Setup list dialog stuff
if (builder.listCallbackMultiChoice != null) {
dialog.selectedIndicesList = new ArrayList<>();
}
if (dialog.recyclerView != null) {
if (builder.adapter == null) {
// Determine list type
if (builder.listCallbackSingleChoice != null) {
dialog.listType = MaterialDialog.ListType.SINGLE;
} else if (builder.listCallbackMultiChoice != null) {
dialog.listType = MaterialDialog.ListType.MULTI;
if (builder.selectedIndices != null) {
dialog.selectedIndicesList = new ArrayList<>(Arrays.asList(builder.selectedIndices));
builder.selectedIndices = null;
}
} else {
dialog.listType = MaterialDialog.ListType.REGULAR;
}
builder.adapter = new DefaultRvAdapter(dialog, MaterialDialog.ListType.getLayoutForType(dialog.listType));
} else if (builder.adapter instanceof MDAdapter) {
// Notify simple list adapter of the dialog it belongs to
((MDAdapter) builder.adapter).setDialog(dialog);
}
}
// Setup progress dialog stuff if needed
setupProgressDialog(dialog);
// Setup input dialog stuff if needed
setupInputDialog(dialog);
// Setup custom views
if (builder.customView != null) {
((MDRootLayout) dialog.view.findViewById(R.id.md_root)).noTitleNoPadding();
FrameLayout frame = (FrameLayout) dialog.view.findViewById(R.id.md_customViewFrame);
dialog.customViewFrame = frame;
View innerView = builder.customView;
if (innerView.getParent() != null) {
((ViewGroup) innerView.getParent()).removeView(innerView);
}
if (builder.wrapCustomViewInScroll) {
/* Apply the frame padding to the content, this allows the ScrollView to draw it's
over scroll glow without clipping */
final Resources r = dialog.getContext().getResources();
final int framePadding = r.getDimensionPixelSize(R.dimen.md_dialog_frame_margin);
final ScrollView sv = new ScrollView(dialog.getContext());
int paddingTop = r.getDimensionPixelSize(R.dimen.md_content_padding_top);
int paddingBottom = r.getDimensionPixelSize(R.dimen.md_content_padding_bottom);
sv.setClipToPadding(false);
if (innerView instanceof EditText) {
// Setting padding to an EditText causes visual errors, set it to the parent instead
sv.setPadding(framePadding, paddingTop, framePadding, paddingBottom);
} else {
// Setting padding to scroll view pushes the scroll bars out, don't do it if not necessary (like above)
sv.setPadding(0, paddingTop, 0, paddingBottom);
innerView.setPadding(framePadding, 0, framePadding, 0);
}
sv.addView(innerView, new ScrollView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
innerView = sv;
}
frame.addView(innerView, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
}
// Setup user listeners
if (builder.showListener != null) {
dialog.setOnShowListener(builder.showListener);
}
if (builder.cancelListener != null) {
dialog.setOnCancelListener(builder.cancelListener);
}
if (builder.dismissListener != null) {
dialog.setOnDismissListener(builder.dismissListener);
}
if (builder.keyListener != null) {
dialog.setOnKeyListener(builder.keyListener);
}
// Setup internal show listener
dialog.setOnShowListenerInternal();
// Other internal initialization
dialog.invalidateList();
dialog.setViewInternal(dialog.view);
dialog.checkIfListInitScroll();
// Min height and max width calculations
WindowManager wm = dialog.getWindow().getWindowManager();
Display display = wm.getDefaultDisplay();
Point size = new Point();
display.getSize(size);
final int windowWidth = size.x;
final int windowHeight = size.y;
final int windowVerticalPadding = builder.context.getResources().getDimensionPixelSize(R.dimen.md_dialog_vertical_margin);
final int windowHorizontalPadding = builder.context.getResources().getDimensionPixelSize(R.dimen.md_dialog_horizontal_margin);
final int maxWidth = builder.context.getResources().getDimensionPixelSize(R.dimen.md_dialog_max_width);
final int calculatedWidth = windowWidth - (windowHorizontalPadding * 2);
dialog.view.setMaxHeight(windowHeight - windowVerticalPadding * 2);
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(dialog.getWindow().getAttributes());
lp.width = Math.min(maxWidth, calculatedWidth);
dialog.getWindow().setAttributes(lp);
}
use of android.content.res.Resources in project Inscription by MartinvanZ.
the class ChangeLogDialog method getHTML.
//Returns change log in HTML format
public String getHTML() {
//TODO: Remove duplicate code with the method show()
//Get resources
final String packageName = mContext.getPackageName();
final Resources resources;
try {
resources = mContext.getPackageManager().getResourcesForApplication(packageName);
} catch (NameNotFoundException ignored) {
return "";
}
//Create HTML change log
return getHTMLChangelog(R.xml.changelog, resources, 0);
}
use of android.content.res.Resources in project actor-platform by actorapp.
the class Screen method hasNavigationBar.
public static boolean hasNavigationBar() {
Resources resources = AndroidContext.getContext().getResources();
int id = resources.getIdentifier("config_showNavigationBar", "bool", "android");
return (id > 0) && resources.getBoolean(id);
}
use of android.content.res.Resources in project NewPipe by TeamNewPipe.
the class Localization method localizeViewCount.
public static String localizeViewCount(long viewCount, Context context) {
Locale locale = getPreferredLocale(context);
Resources res = context.getResources();
String viewsString = res.getString(R.string.view_count_text);
NumberFormat nf = NumberFormat.getInstance(locale);
String formattedViewCount = nf.format(viewCount);
return String.format(viewsString, formattedViewCount);
}
Aggregations