android – 在代码中设置textview的边距和重力不起作用

前端之家收集整理的这篇文章主要介绍了android – 在代码中设置textview的边距和重力不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我只为我的textview设置边距,那就是线性布局,一切正常.
如果我只为我的textview设置重力,它就可以了.但是如果我设置了两个属性(重力和边距),重力仍然保留,边缘设置成功.

我的代码用于设置两个不能按预期工作的属性

tv2=new TextView(this);
tv2.setText("Text");
LinearLayout.LayoutParams para=new LinearLayout.LayoutParams(
    LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT );
para.setMargins(0,10,10); //left,top,right,bottom
tv2.setLayoutParams(para);
tv2.setGravity(android.view.Gravity.CENTER_HORIZONTAL);

我必须在代码中构建我的布局,不能使用xml文件.

解决方法

@H_502_12@ 请尝试使用此代码
para.gravity = Gravity.CENTER_HORIZONTAL;
tv2.setLayoutParams(para);

//the below sets the view's content gravity,not the gravity
//of the view itself. Since the width is wrap_content,this
//has no effect.
//tv2.setGravity(android.view.Gravity.CENTER_HORIZONTAL);
原文链接:https://www.f2er.com/android/316733.html

猜你在找的Android相关文章