您好,登錄后才能下訂單哦!
由于項目需求菜單寫活,效果如下:
這里的按鈕數量是可變的.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。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。