动态改变布局

本文详细解析并演示了如何通过XML布局文件实现一个布局组件的调整,包括使用RelativeLayout进行定位,设置ViewPager翻页动画间隔,以及如何通过代码实现FrameLayout的底部对齐和水平居中,附带具体代码实例。
摘要由CSDN通过智能技术生成

1.布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical" >

    <android.support.v4.view.ViewPager
            android:id="@+id/id_guide_viewpager"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_gravity="center"
            android:flipInterval="30"
            android:persistentDrawingCache="animation" />

    <FrameLayout
            android:id="@+id/dot_frame"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:gravity="center"
            android:layout_marginBottom="16.0dip">
        <LinearLayout
                android:id="@+id/dot_contain"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="horizontal" >
        </LinearLayout>

        <ImageView
                android:id="@+id/cur_dot"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/dot2_w" />
    </FrameLayout>

    <ImageView
            android:id="@+id/open"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentRight="true"
            android:clickable="true"
            android:src="@drawable/ic_open"
            android:visibility="gone" />

</RelativeLayout>

讲FrameLayout设置为靠近父控件底部,并水平居中,距离底部距离(bottomMargin)

 public void setDotAlignBottom(int px){
       View m_obj_view = LayoutInflater.from(context).inflate(R.layout.guide,null);
       FrameLayout dot_frame = (FrameLayout) m_obj_view.findViewById(R.id.dot_frame);

       /*****因为FrameLayout的父布局是RelativeLayout 所以类型为 RelativeLayout.LayoutParams****/
       RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(dot_frame.getLayoutParams());
       /****设置布局位置****/
       layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
       layoutParams.addRule(RelativeLayout.CENTER_HORIZONTAL);

       layoutParams.bottomMargin = px;//or  layoutParams.setMargins(0,0,0,px);
       dot_frame.setLayoutParams(layoutParams);
   }

代码很简单,不多做介绍;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值