org.chromium.chrome.browser.widget.LoadingView Java Examples
The following examples show how to use
org.chromium.chrome.browser.widget.LoadingView.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BookmarkContentView.java From delion with Apache License 2.0 | 6 votes |
@Override protected void onFinishInflate() { super.onFinishInflate(); mItemsContainer = (BookmarkRecyclerView) findViewById(R.id.bookmark_items_container); TextView emptyView = (TextView) findViewById(R.id.bookmark_empty_view); emptyView.setText(R.string.bookmarks_folder_empty); mItemsContainer.setEmptyView(emptyView); mActionBar = (BookmarkActionBar) findViewById(R.id.bookmark_action_bar); mLoadingView = (LoadingView) findViewById(R.id.bookmark_initial_loading_view); FadingShadowView shadow = (FadingShadowView) findViewById(R.id.shadow); if (DeviceFormFactor.isLargeTablet(getContext())) { shadow.setVisibility(View.GONE); } else { shadow.init(ApiCompatibilityUtils.getColor(getResources(), R.color.toolbar_shadow_color), FadingShadow.POSITION_TOP); } }
Example #2
Source File: LogoView.java From delion with Apache License 2.0 | 6 votes |
/** * Constructor used to inflate a LogoView from XML. */ public LogoView(Context context, AttributeSet attrs) { super(context, attrs); mLogo = getDefaultLogo(); mLogoMatrix = new Matrix(); mLogoIsDefault = true; mPaint = new Paint(); mPaint.setFilterBitmap(true); // Mark this view as non-clickable so that accessibility will ignore it. When a non-default // logo is shown, this view will be marked clickable again. setOnClickListener(this); setClickable(false); setWillNotDraw(false); mLoadingView = new LoadingView(getContext()); LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); lp.gravity = Gravity.CENTER; mLoadingView.setLayoutParams(lp); mLoadingView.setVisibility(View.GONE); addView(mLoadingView); }
Example #3
Source File: BookmarkContentView.java From AndroidChromium with Apache License 2.0 | 6 votes |
@Override protected void onFinishInflate() { super.onFinishInflate(); mItemsContainer = (BookmarkRecyclerView) findViewById(R.id.bookmark_items_container); TextView emptyView = (TextView) findViewById(R.id.bookmark_empty_view); emptyView.setText(R.string.bookmarks_folder_empty); mItemsContainer.setEmptyView(emptyView); mActionBar = (BookmarkActionBar) findViewById(R.id.bookmark_action_bar); mLoadingView = (LoadingView) findViewById(R.id.bookmark_initial_loading_view); FadingShadowView shadow = (FadingShadowView) findViewById(R.id.shadow); if (DeviceFormFactor.isLargeTablet(getContext())) { shadow.setVisibility(View.GONE); } else { shadow.init(ApiCompatibilityUtils.getColor(getResources(), R.color.toolbar_shadow_color), FadingShadow.POSITION_TOP); } }
Example #4
Source File: LogoView.java From AndroidChromium with Apache License 2.0 | 6 votes |
/** * Constructor used to inflate a LogoView from XML. */ public LogoView(Context context, AttributeSet attrs) { super(context, attrs); mLogo = getDefaultLogo(); mLogoMatrix = new Matrix(); mLogoIsDefault = true; mPaint = new Paint(); mPaint.setFilterBitmap(true); // Mark this view as non-clickable so that accessibility will ignore it. When a non-default // logo is shown, this view will be marked clickable again. setOnClickListener(this); setClickable(false); setWillNotDraw(false); mLoadingView = new LoadingView(getContext()); LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); lp.gravity = Gravity.CENTER; mLoadingView.setLayoutParams(lp); mLoadingView.setVisibility(View.GONE); addView(mLoadingView); }
Example #5
Source File: SelectableListLayout.java From AndroidChromium with Apache License 2.0 | 6 votes |
@Override protected void onFinishInflate() { super.onFinishInflate(); LayoutInflater.from(getContext()).inflate(R.layout.selectable_list_layout, this); mEmptyView = (TextView) findViewById(R.id.empty_view); mLoadingView = (LoadingView) findViewById(R.id.loading_view); mLoadingView.showLoadingUI(); mToolbarStub = (ViewStub) findViewById(R.id.action_bar_stub); FadingShadowView shadow = (FadingShadowView) findViewById(R.id.shadow); if (DeviceFormFactor.isLargeTablet(getContext())) { shadow.setVisibility(View.GONE); } else { shadow.init(ApiCompatibilityUtils.getColor(getResources(), R.color.toolbar_shadow_color), FadingShadow.POSITION_TOP); } }
Example #6
Source File: LogoView.java From 365browser with Apache License 2.0 | 6 votes |
/** * Constructor used to inflate a LogoView from XML. */ public LogoView(Context context, AttributeSet attrs) { super(context, attrs); mLogo = getDefaultLogo(); mLogoMatrix = new Matrix(); mLogoIsDefault = true; mPaint = new Paint(); mPaint.setFilterBitmap(true); // Mark this view as non-clickable so that accessibility will ignore it. When a non-default // logo is shown, this view will be marked clickable again. setOnClickListener(this); setClickable(false); setWillNotDraw(false); mLoadingView = new LoadingView(getContext()); LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); lp.gravity = Gravity.CENTER; mLoadingView.setLayoutParams(lp); mLoadingView.setVisibility(View.GONE); addView(mLoadingView); }
Example #7
Source File: SelectableListLayout.java From 365browser with Apache License 2.0 | 6 votes |
@Override protected void onFinishInflate() { super.onFinishInflate(); LayoutInflater.from(getContext()).inflate(R.layout.selectable_list_layout, this); // TODO(twellington): Remove this fork in the code after UX decides on final design // for empty and loading views. mChromeHomeEmptyAndLoadingViewTopPadding = getResources().getDimensionPixelSize(R.dimen.chrome_home_empty_view_top_padding); mEmptyView = (TextView) findViewById(R.id.empty_view); setEmptyOrLoadingViewStyle(mEmptyView); mLoadingView = (LoadingView) findViewById(R.id.loading_view); setEmptyOrLoadingViewStyle(mLoadingView); mLoadingView.showLoadingUI(); mToolbarStub = (ViewStub) findViewById(R.id.action_bar_stub); setFocusable(true); setFocusableInTouchMode(true); }