Android Open Source - pulltorefresh_library_with_Indexable_listView Default Google Style View Layout






From Project

Back to project page pulltorefresh_library_with_Indexable_listView.

License

The source code is released under:

Apache License

If you think the Android project pulltorefresh_library_with_Indexable_listView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*******************************************************************************
 * Copyright 2014 Naver Business Platform Corp.
 * //from  w  w w .  ja va  2 s.  c  om
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/
package com.handmark.pulltorefresh.library.internal;

import com.handmark.pulltorefresh.library.R;

import android.content.Context;
import android.content.res.TypedArray;
import android.view.LayoutInflater;
import android.widget.FrameLayout;
import android.widget.TextView;
/**
 * Specific implemented layout of Google style view layout<br />
 * @author Wonjun Kim
 */
public class DefaultGoogleStyleViewLayout extends AbstractDefaultGoogleStyleViewLayout {

  public DefaultGoogleStyleViewLayout(Context context, TypedArray attrs) {
    super(context, attrs);
  }
  /**
   * Inflate layout by {@code inflateId}
   * @param context
   * @param inflateId inflate id value like {@code R.layout...} 
   */
  private void initInflate(Context context, int inflateId) {
    LayoutInflater.from(context).inflate(inflateId, this);
  }
  /**
   * Initialize layout
   */
  @Override
  protected void initImpl(Context context, TypedArray attrs) {
    initInflate(context, getLayoutInflateId());
  }
  /**
   * Returns inflate id to be used when inflating
   * If you want to change layout xml, you have to override this method and change a return value
   * @return Inflate id
   */
  protected int getLayoutInflateId() {
    return R.layout.pull_to_refresh_header_google_style;
  }
  /**
   * Bind SubHeaderText layout Component to some field
   */
  @Override
  protected TextView geSubHeaderTextLayout(Context context, TypedArray attrs) {
    return (TextView) findViewById(R.id.pull_to_refresh_sub_text);
  }
  /**
   * Bind HeaderText layout Component to some field
   */
  @Override
  protected TextView getHeaderText(Context context, TypedArray attrs) {
    return (TextView) findViewById(R.id.pull_to_refresh_text);
  }
  /**
   * Bind Inner layout Component to some field
   */
  @Override
  protected FrameLayout getInnerLayout(Context context, TypedArray attrs) {
    return (FrameLayout) findViewById(R.id.fl_inner_for_google_style);
  }

  @Override
  protected void initPropertiesImpl(Context context, TypedArray attrs) {
    // do nothing
  }

  @Override
  protected void pullToRefreshImpl() {
    // do nothing
  }

  @Override
  protected void releaseToRefreshImpl() {
    // do nothing    
  }

  @Override
  protected void refreshingImpl() {
    // do nothing    
  }

  @Override
  protected void resetImpl() {
    // do nothing    
  }

  @Override
  protected void onPullImpl(float scale) {
    // do nothing
  }
}




Java Source Code List

com.handmark.pulltorefresh.configuration.xml.ExtendedXmlConfigParserFactory.java
com.handmark.pulltorefresh.configuration.xml.PullToRefreshConfigXmlParser.java
com.handmark.pulltorefresh.configuration.xml.PullToRefreshNode.java
com.handmark.pulltorefresh.configuration.xml.PullToRefreshXmlConfiguration.java
com.handmark.pulltorefresh.configuration.xml.XmlPullNodeParser.java
com.handmark.pulltorefresh.configuration.xml.XmlPullNode.java
com.handmark.pulltorefresh.configuration.xml.XmlPullParserWrapper.java
com.handmark.pulltorefresh.extras.listfragment.PullToRefreshBaseListFragment.java
com.handmark.pulltorefresh.extras.listfragment.PullToRefreshExpandableListFragment.java
com.handmark.pulltorefresh.extras.listfragment.PullToRefreshIndexableListFragment.java
com.handmark.pulltorefresh.extras.listfragment.PullToRefreshListFragment.java
com.handmark.pulltorefresh.library.AlphaAnimator.java
com.handmark.pulltorefresh.library.GoogleStyleProgressLayoutFactory.java
com.handmark.pulltorefresh.library.GoogleStyleProgressLayout.java
com.handmark.pulltorefresh.library.GoogleStyleViewLayoutFactory.java
com.handmark.pulltorefresh.library.GoogleStyleViewLayout.java
com.handmark.pulltorefresh.library.IGoogleStyleProgressLayout.java
com.handmark.pulltorefresh.library.IGoogleStyleViewLayout.java
com.handmark.pulltorefresh.library.IIndicatorLayout.java
com.handmark.pulltorefresh.library.ILoadingLayout.java
com.handmark.pulltorefresh.library.IPullToRefreshConsumer.java
com.handmark.pulltorefresh.library.IPullToRefresh.java
com.handmark.pulltorefresh.library.IndicatorLayoutFactory.java
com.handmark.pulltorefresh.library.LoadingLayoutFactory.java
com.handmark.pulltorefresh.library.LoadingLayoutProxy.java
com.handmark.pulltorefresh.library.OverscrollHelper.java
com.handmark.pulltorefresh.library.PullToRefreshAdapterViewBase.java
com.handmark.pulltorefresh.library.PullToRefreshBase.java
com.handmark.pulltorefresh.library.PullToRefreshExpandableListView.java
com.handmark.pulltorefresh.library.PullToRefreshGridView.java
com.handmark.pulltorefresh.library.PullToRefreshHorizontalScrollView.java
com.handmark.pulltorefresh.library.PullToRefreshIndexableListView.java
com.handmark.pulltorefresh.library.PullToRefreshListView.java
com.handmark.pulltorefresh.library.PullToRefreshScrollView.java
com.handmark.pulltorefresh.library.PullToRefreshWebView.java
com.handmark.pulltorefresh.library.StringMatcher.java
com.handmark.pulltorefresh.library.extras.IndexScroller.java
com.handmark.pulltorefresh.library.extras.IndexableListView.java
com.handmark.pulltorefresh.library.extras.PullToRefreshWebView2.java
com.handmark.pulltorefresh.library.extras.SoundPullEventListener.java
com.handmark.pulltorefresh.library.internal.AbstractDefaultGoogleStyleViewLayout.java
com.handmark.pulltorefresh.library.internal.Assert.java
com.handmark.pulltorefresh.library.internal.DefaultGoogleStyleProgressLayout.java
com.handmark.pulltorefresh.library.internal.DefaultGoogleStyleViewLayout.java
com.handmark.pulltorefresh.library.internal.DefaultIndicatorLayout.java
com.handmark.pulltorefresh.library.internal.EmptyViewMethodAccessor.java
com.handmark.pulltorefresh.library.internal.FlipLoadingLayout.java
com.handmark.pulltorefresh.library.internal.FlippedProgressBar.java
com.handmark.pulltorefresh.library.internal.IndicatorLayout.java
com.handmark.pulltorefresh.library.internal.LoadingLayout.java
com.handmark.pulltorefresh.library.internal.PullingProgressLayout.java
com.handmark.pulltorefresh.library.internal.RotateLoadingLayout.java
com.handmark.pulltorefresh.library.internal.Utils.java
com.handmark.pulltorefresh.library.internal.ViewCompat.java