本文整理汇总了Java中org.chromium.base.ApiCompatibilityUtils.setTextAlignment方法的典型用法代码示例。如果您正苦于以下问题:Java ApiCompatibilityUtils.setTextAlignment方法的具体用法?Java ApiCompatibilityUtils.setTextAlignment怎么用?Java ApiCompatibilityUtils.setTextAlignment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.chromium.base.ApiCompatibilityUtils
的用法示例。
在下文中一共展示了ApiCompatibilityUtils.setTextAlignment方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onFocusChanged
import org.chromium.base.ApiCompatibilityUtils; //导入方法依赖的package包/类
@Override
protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
mFocused = focused;
if (!focused) mAutocompleteSpan.clearSpan();
super.onFocusChanged(focused, direction, previouslyFocusedRect);
if (focused && mFirstFocusTimeMs == 0) {
mFirstFocusTimeMs = SystemClock.elapsedRealtime();
if (mOmniboxLivenessListener != null) mOmniboxLivenessListener.onOmniboxFocused();
}
if (focused) StartupMetrics.getInstance().recordFocusedOmnibox();
fixupTextDirection();
// Always align to the same as the paragraph direction (LTR = left, RTL = right).
ApiCompatibilityUtils.setTextAlignment(this, TEXT_ALIGNMENT_TEXT_START);
}
示例2: addLabel
import org.chromium.base.ApiCompatibilityUtils; //导入方法依赖的package包/类
private TextView addLabel(LinearLayout certificateView, String label) {
TextView t = new TextView(mContext);
ApiCompatibilityUtils.setTextAlignment(t, View.TEXT_ALIGNMENT_VIEW_START);
t.setPadding(mPadding, mPadding / 2, mPadding, 0);
t.setText(label);
t.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
t.setTextColor(ApiCompatibilityUtils.getColor(mContext.getResources(),
R.color.connection_info_popup_text));
certificateView.addView(t);
return t;
}
示例3: addValue
import org.chromium.base.ApiCompatibilityUtils; //导入方法依赖的package包/类
private void addValue(LinearLayout certificateView, String value) {
TextView t = new TextView(mContext);
ApiCompatibilityUtils.setTextAlignment(t, View.TEXT_ALIGNMENT_VIEW_START);
t.setText(value);
t.setPadding(mPadding, 0, mPadding, mPadding / 2);
t.setTextColor(ApiCompatibilityUtils.getColor(mContext.getResources(),
R.color.connection_info_popup_text));
certificateView.addView(t);
}
示例4: prepareMainSection
import org.chromium.base.ApiCompatibilityUtils; //导入方法依赖的package包/类
/**
* Creates the main section. Subclasses must call super#createMainSection() immediately to
* guarantee that Views are added in the correct order.
*
* @param sectionName Title to display for the section.
*/
private LinearLayout prepareMainSection(String sectionName) {
// The main section is a vertical linear layout that subclasses can append to.
LinearLayout mainSectionLayout = new LinearLayout(getContext());
mainSectionLayout.setOrientation(VERTICAL);
LinearLayout.LayoutParams mainParams = new LayoutParams(0, LayoutParams.WRAP_CONTENT);
mainParams.weight = 1;
addView(mainSectionLayout, mainParams);
// The title is always displayed for the row at the top of the main section.
mTitleView = new TextView(getContext());
mTitleView.setText(sectionName);
ApiCompatibilityUtils.setTextAppearance(
mTitleView, R.style.PaymentsUiSectionHeader);
mainSectionLayout.addView(
mTitleView, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
// Create the two TextViews for showing the summary text.
mSummaryLeftTextView = new TextView(getContext());
mSummaryLeftTextView.setId(R.id.payments_left_summary_label);
ApiCompatibilityUtils.setTextAppearance(
mSummaryLeftTextView, R.style.PaymentsUiSectionDefaultText);
mSummaryRightTextView = new TextView(getContext());
ApiCompatibilityUtils.setTextAppearance(
mSummaryRightTextView, R.style.PaymentsUiSectionDefaultText);
ApiCompatibilityUtils.setTextAlignment(mSummaryRightTextView, TEXT_ALIGNMENT_TEXT_END);
// The main TextView sucks up all the available space.
LinearLayout.LayoutParams leftLayoutParams = new LinearLayout.LayoutParams(
0, LayoutParams.WRAP_CONTENT);
leftLayoutParams.weight = 1;
LinearLayout.LayoutParams rightLayoutParams = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
ApiCompatibilityUtils.setMarginStart(
rightLayoutParams,
getContext().getResources().getDimensionPixelSize(
R.dimen.payments_section_small_spacing));
// The summary section displays up to two TextViews side by side.
mSummaryLayout = new LinearLayout(getContext());
mSummaryLayout.addView(mSummaryLeftTextView, leftLayoutParams);
mSummaryLayout.addView(mSummaryRightTextView, rightLayoutParams);
mainSectionLayout.addView(mSummaryLayout, new LinearLayout.LayoutParams(
LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
setSummaryText(null, null);
createMainSectionContent(mainSectionLayout);
return mainSectionLayout;
}
示例5: showCertificateChain
import org.chromium.base.ApiCompatibilityUtils; //导入方法依赖的package包/类
private void showCertificateChain(byte[][] derData) {
for (int i = 0; i < derData.length; i++) {
addCertificate(derData[i]);
}
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(mContext,
android.R.layout.simple_spinner_item,
mTitles) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView view = (TextView) super.getView(position, convertView, parent);
// Add extra padding on the end side to avoid overlapping the dropdown arrow.
ApiCompatibilityUtils.setPaddingRelative(view, mPadding, mPadding, mPadding * 2,
mPadding);
return view;
}
};
arrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
LinearLayout dialogContainer = new LinearLayout(mContext);
dialogContainer.setOrientation(LinearLayout.VERTICAL);
TextView title = new TextView(mContext);
title.setText(R.string.certtitle);
ApiCompatibilityUtils.setTextAlignment(title, View.TEXT_ALIGNMENT_VIEW_START);
ApiCompatibilityUtils.setTextAppearance(title, android.R.style.TextAppearance_Large);
title.setTypeface(title.getTypeface(), Typeface.BOLD);
title.setPadding(mPadding, mPadding, mPadding, mPadding / 2);
dialogContainer.addView(title);
Spinner spinner = new Spinner(mContext);
ApiCompatibilityUtils.setTextAlignment(spinner, View.TEXT_ALIGNMENT_VIEW_START);
spinner.setAdapter(arrayAdapter);
spinner.setOnItemSelectedListener(this);
spinner.setDropDownWidth(ViewGroup.LayoutParams.MATCH_PARENT);
// Remove padding so that dropdown has same width as the spinner.
spinner.setPadding(0, 0, 0, 0);
dialogContainer.addView(spinner);
LinearLayout certContainer = new LinearLayout(mContext);
certContainer.setOrientation(LinearLayout.VERTICAL);
for (int i = 0; i < mViews.size(); ++i) {
LinearLayout certificateView = mViews.get(i);
if (i != 0) {
certificateView.setVisibility(LinearLayout.GONE);
}
certContainer.addView(certificateView);
}
ScrollView scrollView = new ScrollView(mContext);
scrollView.addView(certContainer);
dialogContainer.addView(scrollView);
showDialogForView(dialogContainer);
}