当前位置: 首页>>代码示例>>Java>>正文


Java FrameLayout.requestLayout方法代码示例

本文整理汇总了Java中android.widget.FrameLayout.requestLayout方法的典型用法代码示例。如果您正苦于以下问题:Java FrameLayout.requestLayout方法的具体用法?Java FrameLayout.requestLayout怎么用?Java FrameLayout.requestLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.FrameLayout的用法示例。


在下文中一共展示了FrameLayout.requestLayout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: instantiateItem

import android.widget.FrameLayout; //导入方法依赖的package包/类
@Override
public Object instantiateItem(ViewGroup container, int position) {
  FrameLayout page = (FrameLayout) container.getChildAt(position);
  if (page == null) {
    return null;
  }
  ZoomableDraweeView zoomableDraweeView =
          (ZoomableDraweeView) page.findViewById(R.id.zoomableView);
  zoomableDraweeView.setAllowTouchInterceptionWhileZoomed(mAllowSwipingWhileZoomed);
  // needed for double tap to zoom
  zoomableDraweeView.setIsLongpressEnabled(false);
  zoomableDraweeView.setTapListener(new DoubleTapGestureListener(zoomableDraweeView));
  DraweeController controller = Fresco.newDraweeControllerBuilder()
    .setUri(SAMPLE_URIS[position % SAMPLE_URIS.length])
    .setCallerContext("ZoomableApp-MyPagerAdapter")
    .build();
  zoomableDraweeView.setController(controller);
  page.requestLayout();
  return page;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:21,代码来源:MyPagerAdapter.java

示例2: onCreate

import android.widget.FrameLayout; //导入方法依赖的package包/类
@Override
 public void onCreate(Bundle icicle) {
   super.onCreate(icicle);

   Window window = getWindow();
   window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
   viewLayout = new LinearLayout(this);
   viewLayout.setOrientation(LinearLayout.HORIZONTAL);
   frameLayout = new FrameLayout(this);
   frameLayout.addView(viewLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT));
   frameLayout.setBackgroundColor(0xFFFFFFFF); // COLOR_WHITE XXX

   setContentView(frameLayout);
   frameLayout.requestLayout();

   hasSurface = false;
 }
 
开发者ID:mit-cml,项目名称:appinventor-extensions,代码行数:19,代码来源:AppInvCaptureActivity.java

示例3: setForceShowHint

import android.widget.FrameLayout; //导入方法依赖的package包/类
public void setForceShowHint(boolean enabled, CharSequence hint) {
    CharSequence oldHint = mForceHint;
    mForceHint = hint;
    if (enabled == mForceShowHint)
        return;
    mWasHintEnabled = isHintEnabled();
    if (enabled)
        setHintEnabled(false);
    mForceShowHint = enabled;

    FrameLayout inputFrame = (FrameLayout) getChildAt(0);

    LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) inputFrame.getLayoutParams();
    int newTopMargin = 0;
    if (enabled) {
        newTopMargin = (int) -mTextPaint.ascent();
    }

    if(newTopMargin != lp.topMargin) {
        lp.topMargin = newTopMargin;
        inputFrame.requestLayout();
    }

    if (!enabled) {
        setHintEnabled(mWasHintEnabled);
        setHint(oldHint);
    }
}
 
开发者ID:MCMrARM,项目名称:revolution-irc,代码行数:29,代码来源:StaticLabelTextInputLayout.java


注:本文中的android.widget.FrameLayout.requestLayout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。