本文整理汇总了Java中android.widget.ImageView.setMinimumWidth方法的典型用法代码示例。如果您正苦于以下问题:Java ImageView.setMinimumWidth方法的具体用法?Java ImageView.setMinimumWidth怎么用?Java ImageView.setMinimumWidth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.ImageView
的用法示例。
在下文中一共展示了ImageView.setMinimumWidth方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: draw
import android.widget.ImageView; //导入方法依赖的package包/类
public void draw() {
windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
Display deviceDisplay = windowManager.getDefaultDisplay();
Point point = new Point();
deviceDisplay.getSize(point);
deviceWidth = point.x;
deviceHeight = point.y;
imageView = new ImageView(this);
imageView.setClickable(false);
imageView.setFocusable(false);
imageView.setMinimumHeight(deviceHeight);
imageView.setMinimumWidth(deviceWidth);
drawKeylines();
}
示例2: init
import android.widget.ImageView; //导入方法依赖的package包/类
private void init(Context context) {
inflater = LayoutInflater.from(context);
headView = (LinearLayout) inflater.inflate(R.layout.kf5_list_head, null);
arrowImageView = (ImageView) headView.findViewById(R.id.kf5_head_arrowImageView);
arrowImageView.setMinimumWidth(70);
arrowImageView.setMinimumHeight(50);
progressBar = (ProgressBar) headView.findViewById(R.id.kf5_head_progressBar);
tipsTextview = (TextView) headView.findViewById(R.id.kf5_head_tipsTextView);
lastUpdatedTextView = (TextView) headView.findViewById(R.id.kf5_head_lastUpdatedTextView);
measureView(headView);
headContentHeight = headView.getMeasuredHeight();
headContentWidth = headView.getMeasuredWidth();
headView.setPadding(0, -1 * headContentHeight, 0, 0);
headView.invalidate();
addHeaderView(headView);
setOnScrollListener(this);
animation = new RotateAnimation(0, -180,
RotateAnimation.RELATIVE_TO_SELF, 0.5f,
RotateAnimation.RELATIVE_TO_SELF, 0.5f);
animation.setInterpolator(new LinearInterpolator());
animation.setDuration(250);
animation.setFillAfter(true);
reverseAnimation = new RotateAnimation(-180, 0,
RotateAnimation.RELATIVE_TO_SELF, 0.5f,
RotateAnimation.RELATIVE_TO_SELF, 0.5f);
reverseAnimation.setInterpolator(new LinearInterpolator());
reverseAnimation.setDuration(200);
reverseAnimation.setFillAfter(true);
state = DONE;
isRefreshable = false;
}
示例3: constructItem
import android.widget.ImageView; //导入方法依赖的package包/类
private PieItem constructItem(int width, ButtonType type, Drawable image, int minimumImageSize) {
ImageView view = new ImageView(mContext);
view.setImageDrawable(image);
view.setMinimumWidth(minimumImageSize);
view.setMinimumHeight(minimumImageSize);
LayoutParams lp = new LayoutParams(minimumImageSize, minimumImageSize);
view.setLayoutParams(lp);
PieItem item = new PieItem(mContext, mGbContext, mPieContainer, 0, width, type, view, mColorInfo);
item.setOnClickListener(this);
item.setOnLongPressListener(mLongPressHandler);
return item;
}