Share to EffectHub.com

You can earn money or coins from your share:)

Tips: you can use Sparticle for uploading away3D effects.

Tips: you can download Sparticle for uploading effects.

Tips: The ActionScript editor is supporting Away3D, Starling, Dragonbones and Flex frameworks.

Tips: paste the web page URL then click button:)

EffectHub.com: Your Best Source for Gaming
Login    or

XlistView: A listview which can pull to refresh and load more (2)

/** * @file XFooterView.java * @create Mar 31, 2012 9:33:43 PM * @author Maxwin * @description XListView's footer */import android.content.Context;import android.util.AttributeSet;import android.view.LayoutInflater;import android.view.View;import android.widget.LinearLayout;import android.widget.TextView;public class XListViewFooter extends LinearLayout {	public final static int STATE_NORMAL = 0;	public final static int STATE_READY = 1;	public final static int STATE_LOADING = 2;	private Context mContext;	private View mContentView;	private View mProgressBar;	private TextView mHintView;		public XListViewFooter(Context context) {		super(context);		initView(context);	}		public XListViewFooter(Context context, AttributeSet attrs) {		super(context, attrs);		initView(context);	}		public void setState(int state) {		mHintView.setVisibility(View.INVISIBLE);		mProgressBar.setVisibility(View.INVISIBLE);		mHintView.setVisibility(View.INVISIBLE);		if (state == STATE_READY) {			mHintView.setVisibility(View.VISIBLE);			mHintView.setText(R.string.xlistview_footer_hint_ready);		} else if (state == STATE_LOADING) {			mProgressBar.setVisibility(View.VISIBLE);		} else {			mHintView.setVisibility(View.VISIBLE);			mHintView.setText(R.string.xlistview_footer_hint_normal);		}	}		public void setBottomMargin(int height) {		if (height < 0) return ;		LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams)mContentView.getLayoutParams();		lp.bottomMargin = height;		mContentView.setLayoutParams(lp);	}		public int getBottomMargin() {		LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams)mContentView.getLayoutParams();		return lp.bottomMargin;	}			/**	 * normal status	 */	public void normal() {		mHintView.setVisibility(View.VISIBLE);		mProgressBar.setVisibility(View.GONE);	}			/**	 * loading status 	 */	public void loading() {		mHintView.setVisibility(View.GONE);		mProgressBar.setVisibility(View.VISIBLE);	}		/**	 * hide footer when disable pull load more	 */	public void hide() {		LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams)mContentView.getLayoutParams();		lp.height = 0;		mContentView.setLayoutParams(lp);	}		/**	 * show footer	 */	public void show() {		LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams)mContentView.getLayoutParams();		lp.height = LayoutParams.WRAP_CONTENT;		mContentView.setLayoutParams(lp);	}		private void initView(Context context) {		mContext = context;		LinearLayout moreView = (LinearLayout)LayoutInflater.from(mContext).inflate(R.layout.xlistview_footer, null);		addView(moreView);		moreView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));				mContentView = moreView.findViewById(R.id.xlistview_footer_content);		mProgressBar = moreView.findViewById(R.id.xlistview_footer_progressbar);		mHintView = (TextView)moreView.findViewById(R.id.xlistview_footer_hint_textview);	}		}


...

You must Sign up as a member of Effecthub to view the content.

2054 views    1 comments

You must Sign up as a member of Effecthub to join the conversation.

ChOw

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: helpers/time_helper.php

Line Number: 22

2013-09-17
>>Back to Android group


Latest Posts


Sponsor


They are waiting for your help



Share

Join Effecthub.com


Or Login with Your Email Address:

Or Sign Up with Your Email Address:
This field must contain a valid email
Password should be at least 1 character

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: views/footer.php

Line Number: 6

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: controllers/topic.php

Line Number: 21

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: controllers/topic.php

Line Number: 85