如何使 Style 中的 Layout_margin 在 java 中工作

发布于 2024-11-23 23:14:48 字数 879 浏览 2 评论 0原文

我在 styles.xml 中有一个带有边距参数的样式,但当我使用它时它不起作用。

<style name="detailTitreEntree" parent="@android:style/Widget.TextView">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textColor">@color/red</item>
    <item name="android:textSize">12sp</item>
    <item name="android:textStyle">bold</item>
    <item name="android:layout_margin">10dip</item>
</style>

我想在我的 java 代码中使用这种样式,所以我已经这样做了:

TextView tvEntree = new TextView(getApplicationContext());
    tvEntree.setText("hello");
    tvEntree.setTextAppearance(getApplicationContext(),R.style.detailTitreEntree);
myLayout.addView(tvEntree);

颜色、样式和大小工作正常,但边距不起作用。用我的风格可以做到吗?

对不起我的英语

I have a style in styles.xml with margin params but it doesn't work when I use it.

<style name="detailTitreEntree" parent="@android:style/Widget.TextView">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textColor">@color/red</item>
    <item name="android:textSize">12sp</item>
    <item name="android:textStyle">bold</item>
    <item name="android:layout_margin">10dip</item>
</style>

and I want to use this style in my java code so I've done that:

TextView tvEntree = new TextView(getApplicationContext());
    tvEntree.setText("hello");
    tvEntree.setTextAppearance(getApplicationContext(),R.style.detailTitreEntree);
myLayout.addView(tvEntree);

color, style and size work fine but margins don't work. Is it possible to do that with my style ?

sorry for my English

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2024-11-30 23:14:48

请参阅此问题的答案:按钮边距的布局问题。解决方案应该是相同的。

See the answer given to this question: Layout problem with button margin. The solution should be the same.

甜尕妞 2024-11-30 23:14:48

您应该将代码添加到 XML 中:

style="detailTitreEntree"

到相关视图,而不是通过代码添加。也许它会解决你的问题。

You should add to your XML the code:

style="detailTitreEntree"

to the relevant View, instead of adding it through code. Maybe it will solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文