我有以下约束布局:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/my_text"
android:layout_width="0dp"
android:layout_height="0dp"
android:text="@string/txt_string"
app:layout_constraintBottom_toBottomOf="@id/one"
app:layout_constraintEnd_toStartOf="@id/two"
app:layout_constraintStart_toEndOf="@id/three"
app:layout_constraintTop_toTopOf="@id/four"
android:layout_marginTop="@dimen/margin_dim"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
我想要的是在代码中更改marginTop的值:
这是我所拥有的,但我还没有找到任何方法来设置顶部边距:
AppCompatTextView mytext;
private void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout);
mytext = findViewById(R.id.my_text);
//here I would like to make something like :
// mytext.setTopMargin(Xdp);
}
1条答案
按热度按时间suzh9iv81#
请尝试以下代码..
setMargin
表示以下坐标