我正在動態創建包含LinearLayout
的視圖並將它們添加到外部LinearLayout
。我想在創建的視圖周圍設置邊距,但忽略XML文件中的layout_margin
。它的工作原理是,如果我在代碼中設置參數,但我想在佈局XML中指定邊距。LinearLayout忽略邊距
設置在XML佈局保證金將被忽略:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:orientation="vertical" >
...
</LinearLayout>
設置保證金,同時創造榮幸:
LinearLayout productView = (LinearLayout) getLayoutInflater().inflate(R.layout.product_preview, null);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
params.setMargins(50, 50, 50, 50);
productView.setLayoutParams(params);
這是外部的佈局。意見被添加到dealer_activity_product_list
。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/dealer_activity_dealer_image"
android:layout_width="match_parent"
android:layout_height="150dp"
android:contentDescription="@string/dealer_activity_dealer_image_desc" />
<TextView
android:id="@+id/dealer_activity_dealer_address"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/dealer_activity_product_list1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical" />
<LinearLayout
android:id="@+id/dealer_activity_product_list2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical" />
</LinearLayout>
</LinearLayout>
您是否嘗試過使用層次觀衆?或嘗試將視圖傾倒到uiautomator?有了這些工具,你可以檢查你的佈局。你能發佈你正在使用的完整代碼嗎? – Tobrun
你能否發表更多的代碼?像完整的XML?我認爲你將保證金設置爲錯誤的項目 –
我使用HierachyViewer來檢查佈局。雖然在代碼中設置邊距會反映在佈局的屬性中,但我找不到在XML文件中設置的值。 – multiholle