由于循环重复,我需要在 java 中而不是在 xml 中设置文本、边距或图像的大小。
当我为 xml 文件中的文本设置 20dp 时,结果比使用此(基于材料设计指南)转换方法转换为 px 的相同 20dp 小 3 倍:
dp = (像素宽度 * 160) / 密度
如何在 xml 和 java 中获得相同的 dp?
资源:
<resources>
<dimen name="cat_height">20dp</dimen>
</resources>
xml:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Business"
android:textSize="@dimen/cat_height"
android:textStyle="bold" />
爪哇:
int dp20 = getResources().getDimensionPixelSize(R.dimen.cat_height);
(...)
TextView categoryText = new TextView(this);
categoryText.setText(subCategoryNames.get(i));
categoryText.setTextSize(dp20);
categoryText.setTypeface(null, Typeface.BOLD);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
params.setMargins(dp20, dp20, dp20, dp20);
mainLinear.addView(categoryText, params);
提前致谢!