Android动态添加view

作者: 楊帥 | 来源:发表于2017-10-19 19:04 被阅读268次

由于项目需求菜单写活,效果如下:


这里的按钮数量是可变的.png

由于不是可滑动控件,我用的百分比布局做的适配

  LinearLayout typeLayout = (LinearLayout) headerView.findViewById(R.id.layout_type);
  final List<FirstTypeEntity.DataBean> firstTypeList = entity.getData();
  for (int i = 0;i<firstTypeList.size();i++){
        WindowManager wm = (WindowManager) getContext()
                .getSystemService(Context.WINDOW_SERVICE);
        int width = wm.getDefaultDisplay().getWidth();
        int height = wm.getDefaultDisplay().getHeight();
        View view = View.inflate(getActivity(),R.layout.item_first_type,null);
        LinearLayout tab = (LinearLayout) view.findViewById(R.id.tab);
        LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) tab.getLayoutParams(); 
        linearParams.width = width/firstTypeList.size();//根据数量来吧
        linearParams.height = width/firstTypeList.size();//根据数量来吧
        tab.setLayoutParams(linearParams); //使设置好的布局参数应用到控件
  }

item_first_type代码:

<com.zhy.android.percent.support.PercentLinearLayout
        android:id="@+id/tab"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center"
        android:background="@drawable/selector_choose_white">
        <ImageView
            android:id="@+id/iv"
            android:layout_width="0dp"
            app:layout_widthPercent="45%h"
            android:layout_height="0dp"
            app:layout_heightPercent="45%h"
            android:src="@mipmap/first_newenergy_tab"/>
        <TextView
            android:id="@+id/tv"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_heightPercent="20%h"
            android:text="新能源"
            android:textColor="@color/black_my"
            app:layout_textSizePercent="12%"
            android:gravity="center"
            android:maxLines="1"
            android:ellipsize="end"/>
    </com.zhy.android.percent.support.PercentLinearLayout>

layout_type代码:

<com.zhy.android.percent.support.PercentLinearLayout
        android:id="@+id/layout_type"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:background="@color/white">
</com.zhy.android.percent.support.PercentLinearLayout>
这种写法数量一般3-6个还是可以的,如果太多的话还是推荐用RecyclerView。
二维码.jpg

推荐下本人的微信公众号,本博客及其他方面的消息会定期同步到公众号上面!

相关文章

  • Android动态添加view

    由于项目需求菜单写活,效果如下: 由于不是可滑动控件,我用的百分比布局做的适配 item_first_type代码...

  • Android动态添加View

    这里以创建一个ImageView为例 1. 首先创建对象 2. 设置对应的属性 3. 创建布局参数 设置子控件在父...

  • Android View.setId(int id) 用法

    Android View.setId(int id) 用法 当要在代码中动态的添加View并且为其设置id时,如果...

  • Learn Flutter Based on Android

    在Android中,addChild和removeChild动态添加或删除View。 在Flutter中,因为wi...

  • Id

    Android View.setId(int id) 的用法 当要在代码中动态的添加View并且为其设置id时,如...

  • Android中动态添加View

    一、使用xml的方式: 1、LayoutInflater: 这个类可以把xml表述的Layout解析为View,从...

  • Android addview—动态添加view

    一、前言 在日常的开发中经常遇到需要动态添加子view的情况,addview是ViewGroup的特有方法,可以在...

  • Android ViewGroup动态添加子View,子View

    前言:自定义ViewGroup做流式布局(简化鸿洋大神的),虽然github上已经有许多现有的控件提供使用,但是还...

  • 动态添加view

    1.解决在次动态添加view后,已添加view位置变动 http://www.programgo.com/arti...

  • 自定义View-LetterView

    1、效果图 2、总体分析 2.1、动态添加View实现   通过在代码中动态添加View的方式,虽然能够实现,但是...

网友评论

    本文标题:Android动态添加view

    本文链接:https://www.haomeiwen.com/subject/qefpuxtx.html