自定义View显示不出来

想封装一个Banner的View,但是ViewPager怎么都显示不出来,

    public class BannerView extends FrameLayout {
        private View mRootView;
        private ViewPager mBannerViewPager;

    public BannerView(Context context) {
        this(context , null);
    }

    public BannerView(Context context, AttributeSet attrs) {
        this(context, attrs , 0);
    }

    public BannerView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context);
    }


        private void init(Context context) {
            mContext = context;
            mRootView = LayoutInflater.from(context).inflate(R.layout.m_banner_view_layout, this, false);
        }
  }

查了半天才发现
LayoutInflater.from(context).inflate(R.layout.m_banner_view_layout, this, false);是这个代码出了问题,
第三个参数的解释如下:
* @param attachToRoot Whether the inflated hierarchy should be attached to
* the root parameter? If false, root is only used to create the
* correct subclass of LayoutParams for the root view in the XML.

如果传false表示这个inflate的布局没有关联到根布局,要手动调用addView(mRootView ),才会添加到根布局,

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值