我有一个简单的观点:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/contact_selected"
android:layout_marginTop="10dp"
android:layout_marginEnd="5dp"
android:orientation="horizontal"
android:padding="3dp">
<TextView
android:id="@+id/txt_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Billy Bob"
/>
</LinearLayout>
当我将LinearLayout标记静态复制到我的主活动布局中时,边距是预期的。但是,当我动态地将视图添加到主活动布局中时,将忽略边距。这是我插入视图的方式
LayoutInflater inflater = (LayoutInflater)
getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.test, null);
TextView txt_title = (TextView)view.findViewById(R.id.txt_title);
txt_title.setText("Dynamic #1");
llayout.addView(view, llayout.getChildCount()-1);
View view2 = inflater.inflate(R.layout.test, null);
txt_title = (TextView)view2.findViewById(R.id.txt_title);
txt_title.setText("Dynamic #2");
llayout.addView(view2, llayout.getChildCount()-1);
这就是它的样子:
主布局中的容器是LinearLayout,它是HorizontalScrollView的子级。任何见解都表示赞赏。
答案 0 :(得分:36)
动态添加视图时,不应使用View
null
父级对ViewGroup
进行通知。所以,换句话说,你应该使用inflater.inflate(R.layout.test, linearLayout, false);
。在确定要生成的布局参数类型时使用父级。传递您的父容器(在本例中为线性布局),以便从XML中正确实例化https://www.openssl.org/docs/man1.0.1/ssl/SSL_CTX_use_certificate_file.html。
答案 1 :(得分:3)
这是因为您需要动态地为布局提供“保证金”。您可以通过创建“ LayoutPrams ”对象来完成此操作,如下所示: -
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
layoutParams.setMargins(30, 20, 30, 0);
在这里,您可以将 LayoutParams 设置为linearlayout:
ll.addView(okButton, layoutParams);
希望它有所帮助。
答案 2 :(得分:0)
首先,您必须获得显示密度。 相关文档为https://developer.android.com/reference/android/util/DisplayMetrics.html
并获取您想要设置边距视图的ID。 就我而言,
layout_login_box = (ConstraintLayout)findViewById(R.id.login_layout_box);
float density = getResources().getDisplayMetrics().density;
ConstraintLayout.LayoutParams params = (ConstraintLayout.LayoutParams)layout_login_box.getLayoutParams();
params.setMargins((int) (24 * density),0,(int) (24 * density),(int) (16 * density));
layout_login_box.setLayoutParams(params);
此外,您可以将ConstraintLayout更改为您自己的视图。