1. 程式人生 > >自定義View流式佈局

自定義View流式佈局

 

//自定義View程式碼
public final class CustomWaterFallViewGroup extends LinearLayout{
    /**
     *   每行最大允許字串商都
     */寫部落格

    final int mMaxSize = 22;
    /**
     *     傳入的字串陣列
      */
    List<String> stringList = new ArrayList<>();
    Context mContext;

    public CustomWaterFallViewGroup(Context context) {
        super(context);
        mContext = context;
        init();
    }

    public CustomWaterFallViewGroup(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        mContext = context;
        init();
    }

    private void init() {
        // 設定最外層的LinearLayout為垂直佈局
        setOrientation(VERTICAL);
    }


    public void setData(List<String> stringList){
        // 直接用新的列表,重新繪製
        this.stringList = stringList;
        showData();
    }

    public void showData(){
        //因為每一次都要新畫,所以移除以前所有的佈局
        removeAllViews();
        // 優先向根佈局新增一條橫向佈局
        LinearLayout linearLayout_h = (LinearLayout) View.inflate(mContext, R.layout.item_water_fall_h, null);
        addView(linearLayout_h);

        // 定義臨時變數,用來計算最後一行已有的字串長度
        int len = 0;

        //遍歷
        for(String str: stringList){
            // 將此字串長度與記錄的已有字串長度相加
            len += str.length();
            // 如果長度大於規定最大長度,說明這一行放不下了,需要換行
            if(len > mMaxSize){
                // 向根佈局新增一條橫向佈局
                linearLayout_h = (LinearLayout) View.inflate(mContext, R.layout.item_water_fall_h, null);
                addView(linearLayout_h);
                // 因為換行,所以這一個字串長度就是最後一行長度
                len = str.length();
            }

            // 新增TextView,並賦值
            View view = View.inflate(mContext, R.layout.item_water_fall, null);
            TextView textView = view.findViewById(R.id.tv_item_water_fall);
            textView.setText(str);
            linearLayout_h.addView(view);

            // 設定權重,讓每一行內所有控制元件相加充滿整行,併合理分配
            LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams)view.getLayoutParams();
            layoutParams.weight = 1;
            view.setLayoutParams(layoutParams);
        }
    }
}

//Activity程式碼

/**
 * 瀑布流
 * @author hasee
 */
public class WaterFallActivity extends AppCompatActivity {
    List<String> strList = new ArrayList<>();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_water_fall);
        initView();
    }

    private void initView() {
        final EditText editText = findViewById(R.id.edit);
        final CustomWaterFallViewGroup customWaterFallViewGroup = findViewById(R.id.water_fall);
        findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // 獲取輸入框文字
                String str = editText.getText().toString();
                // 將文字放入列表
                strList.add(str);
                // 設定資料
                customWaterFallViewGroup.setData(strList);
            }
        });
    }
}