LinearLayout 中的图像不能很好地调整大小
我有一个名为“SimpleResultPage”的页面。在此页面中,我显示应用程序中不同类型项目的详细视图。
在活动开始时,我确定应该显示什么类型的项目,并根据该项目隐藏/显示 ViewStub 的
当前我尝试在两个文本字段之间显示图像,这是代码:
<TextView
android:id="@+id/Simple_Result_Text_Title_1"
style="@style/Style_Simple_Result_Title"/>
<ViewStub
android:id="@+id/Image1_ViewStub"
android:inflatedId="@+id/Image1_Inflated_ViewStub1"
style="@style/Style_Simple_Result_Image"
android:layout="@layout/simple_list_image"/>
<TextView
android:id="@+id/Simple_Result_Text_Text_1"
style="@style/Style_Simple_Result_Text"/>
图像的样式是这样的:
<style name="Style_Simple_Result_Image">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:adjustViewBounds">true</item>
<item name="android:scaleType">center</item>
<item name="android:layout_gravity">center_horizontal</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:layout_marginLeft">20dp</item>
<item name="android:layout_marginRight">20dp</item>
<item name="android:layout_marginBottom">20dp</item>
</style>
但不知何故,图像总是很小并且没有按照我想要的方式显示(填充完整宽度并在两侧留下 20dp 边距)。
我应该如何调整代码以使其成为我想要的方式?
I have a page called 'SimpleResultPage'. In this page I display a detail view from different kind of items i have in my app.
At the start of the activity I determine what kind of items it should display and based on that I hide/show ViewStub
's
Currently I try to display an Image in betweent two textfields and this is the code:
<TextView
android:id="@+id/Simple_Result_Text_Title_1"
style="@style/Style_Simple_Result_Title"/>
<ViewStub
android:id="@+id/Image1_ViewStub"
android:inflatedId="@+id/Image1_Inflated_ViewStub1"
style="@style/Style_Simple_Result_Image"
android:layout="@layout/simple_list_image"/>
<TextView
android:id="@+id/Simple_Result_Text_Text_1"
style="@style/Style_Simple_Result_Text"/>
The style for the image is this:
<style name="Style_Simple_Result_Image">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:adjustViewBounds">true</item>
<item name="android:scaleType">center</item>
<item name="android:layout_gravity">center_horizontal</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:layout_marginLeft">20dp</item>
<item name="android:layout_marginRight">20dp</item>
<item name="android:layout_marginBottom">20dp</item>
</style>
But somehow the image is always small and isn't showing it the way I want it to (fill the complete width and leave 20dp margin on both sides).
How should I adjust the code to make it the way I want it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
改变线路
有
什么影响吗?
Does changing the line
to
make any difference?