活泼的足球 · Android音视频开发之MediaPlay ...· 11 月前 · |
谈吐大方的拐杖 · postgresql合并string_agg ...· 1 年前 · |
爽快的冲锋衣 · Anylogic学习--------选项列表 ...· 1 年前 · |
我在ConstrainLayout中的视图如下所示。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="260dp"
android:textColor="#FFF"
android:textSize="16sp"
app:layout_constraintLeft_toLeftOf="@+id/parent"
app:layout_constraintTop_toBottomOf="@id/message_date"
android:id="@+id/text_main"
/>
基于某些条件,我想在recycleViewHolder中以编程方式将视图更改为
app:layout_constraintLeft_toLeftOf="@+id/parent"
或
layout_constraintLeft_toRightOf="@+id/parent"
。
发布于 2017-01-16 16:55:18
下面是一个使用java代码在父视图底部设置按钮的示例:
ConstraintLayout constraintLayout;
ConstraintSet constraintSet;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
constraintLayout = (ConstraintLayout) findViewById(R.id.activity_main_constraint_layout);
Button button = new Button(this);
button.setText("Hello");
constraintLayout.addView(button);
constraintSet = new ConstraintSet();
constraintSet.clone(constraintLayout);
constraintSet.connect(button.getId(), ConstraintSet.LEFT, constraintLayout.getId(), ConstraintSet.RIGHT, 0);
constraintSet.constrainDefaultHeight(button.getId(), 200);
constraintSet.applyTo(constraintLayout);
}
为了达到这样的效果,
app:layout_constraintLeft_toLeftOf="@+id/parent"
您的java代码应该如下所示
set.connect(YOURVIEW.getId(),ConstraintSet.LEFT,ConstraintSet.PARENT_ID,ConstraintSet.LEFT,0);
为了达到这样的效果,
layout_constraintLeft_toRightOf="@+id/parent"
你的java代码应该是这样的,
set.connect(YOURVIEW.getId(),ConstraintSet.LEFT,ConstraintSet.PARENT_ID,ConstraintSet.RIGHT,0);
这里,我假设
android:id="@+id/parent"
是父ConstraintLayout的id。
发布于 2020-04-25 18:15:23
constraintSet =新ConstraintSet();以此类推
不管怎么说对我来说都不管用。
解决方式
LayoutParams layoutParams = (LayoutParams) viewToChange.getLayoutParams();
layoutParams.leftToLeft = anotherViewId;
layoutParams.rightToRight =anotherViewId;
layoutParams.topToTop = anotherViewId;
layoutParams.bottomToBottom = anotherViewId;
layoutParams.startToStart =anotherViewId;
layoutParams.endToEnd = anotherViewId;
viewToChange.setLayoutParams(layoutParams);
发布于 2018-11-27 21:37:16
使用
id
class MyLayout(context: Context) : ConstraintLayout(context) {
fun show() {
val view = ImageView(context)
addView(view)
val params = view.layoutParams as ConstraintLayout.LayoutParams