如何使 Style 中的 Layout_margin 在 java 中工作
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此问题的答案:按钮边距的布局问题。解决方案应该是相同的。
See the answer given to this question: Layout problem with button margin. The solution should be the same.
您应该将代码添加到 XML 中:
到相关视图,而不是通过代码添加。也许它会解决你的问题。
You should add to your XML the code:
to the relevant View, instead of adding it through code. Maybe it will solve your problem.