我在尝试使用FlexboxLayout创建简单界面时遇到了一些问题。我在 .xml 文件中创建了视图,一切都按预期工作,但是当我尝试以编程方式创建相同的视图时,我无法设置layout_flexBasisPercent
. 我正在尝试实现这样的目标:
这是xml代码:
<com.google.android.flexbox.FlexboxLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:flexDirection="row"
tools:context=".MainActivity">
<com.google.android.flexbox.FlexboxLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:flexDirection="row"
app:layout_flexBasisPercent="30%"
app:layout_order="2">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/lorem"/>
</com.google.android.flexbox.FlexboxLayout>
<com.google.android.flexbox.FlexboxLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:flexDirection="row"
app:layout_flexBasisPercent="70%"
app:layout_order="1" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/random"/>
</com.google.android.flexbox.FlexboxLayout>
我正在尝试使用此代码以编程方式重现相同的视图,但不起作用:
FlexboxLayout fb = findViewById(R.id.fb_main);
fb.setLayoutDirection(FlexDirection.ROW);
// Create right subregion on main layout
FlexboxLayout right = new FlexboxLayout(this);
FlexboxLayout.LayoutParams lpRight =
new FlexboxLayout.LayoutParams(
FlexboxLayout.LayoutParams.MATCH_PARENT,
FlexboxLayout.LayoutParams.MATCH_PARENT);
lpRight.setFlexBasisPercent(30f);
lpRight.setOrder(2);
lpRight.setLayoutDirection(FlexDirection.ROW);
// Right subregions contains a Textview
TextView tv = new TextView(this);
tv.setLayoutParams(lpRight);
tv.setText(getResources().getString(R.string.lorem));
right.addView(tv);
// Create left subregion on main layout
FlexboxLayout left = new FlexboxLayout(this);
FlexboxLayout.LayoutParams lpLeft =
new FlexboxLayout.LayoutParams(
FlexboxLayout.LayoutParams.MATCH_PARENT,
FlexboxLayout.LayoutParams.MATCH_PARENT);
lpLeft.setFlexBasisPercent(70f);
lpLeft.setOrder(1);
lpLeft.setLayoutDirection(FlexDirection.ROW);
// Left subregion contains an Imageview
ImageView iv = new ImageView(this);
iv.setLayoutParams(lpLeft);
iv.setImageResource(R.drawable.random);
iv.setScaleType(ImageView.ScaleType.CENTER_CROP);
left.addView(iv);
fb.addView(left);
fb.addView(right);
谁能找到错误?或者我做错了什么?
谢谢你。