Home | History | Annotate | Download | only in browser

Lines Matching refs:mBackButton

49     private ImageButton mBackButton;
171 mBackButton = new ImageButton(mContext);
172 mBackButton.setImageResource(R.drawable.ic_back_hierarchy_holo_dark);
177 mBackButton.setBackgroundResource(resid);
178 mBackButton.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
180 mBackButton.setOnClickListener(this);
181 mBackButton.setVisibility(View.GONE);
182 mBackButton.setContentDescription(mContext.getText(
184 addView(mBackButton, 0);
230 mBackButton.setVisibility(View.VISIBLE);
232 mBackButton.setVisibility(View.GONE);
277 mBackButton.setVisibility(canGoBack ? View.VISIBLE : View.GONE);
279 mBackButton.setVisibility(View.GONE);
300 if (mBackButton == v) {