如何保证ImageView的空间,不让它缩小?
我需要创建一个包含以下内容的 XML:
* 两个 TextView 具有不同的文本(1-3 行),一个 TextView 位于另一个下方。
* 1 个 ImageView 位于 2 个 TextView 右侧,垂直居中,30x30 像素。
一个主要的限制是它在膨胀到 PopupWindow 时无法占据整个屏幕,这意味着我无法在很多地方使用 fill_parent 属性。
我尝试了很多不同的布局,但是当文本很长时,ImageView 不断被 TextView 推开。当文本“半长”时,图像会变小,但仍然可见。我希望它始终为 30x30 像素,文本可以换行并使用另一行。
我尝试指定 width 和 minWidth 的值。还尝试了 ImageView 的layout_weight =“1”。还尝试将 ImageView 包装到 LinearLayout 中并给出layout_weight =“1”参数。什么都不起作用。
这是不起作用的示例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:orientation="vertical">
<TextView android:id="@+id/popupTitle" android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/popupContent"
android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/img_30x30_px" />
</LinearLayout>
I need to create an XML with the following content:
* Two TextViews with varying text (1- 3 rows), one TextView below the other.
* One ImageView to the right of the 2 TextViews, centered vertically, 30x30 px.
One major limitation is that it can't take the whole screen when inflated into a PopupWindow, which means that I cannot use the attributes fill_parent in many places.
I tried a lot of different layouts, but the ImageView keeps getting pushed away by the TextViews when the text is long. When the text is "half long" the image gets tiny but is still visible. I want it to always be 30x30 px, the text can wrap and use another line instead.
I tried to specify values for width and minWidth. Also tried layout_weight="1" for the ImageView. Also tried wrapping the ImageView into a LinearLayout and give that the layout_weight="1" parameter. Nothing works.
Here's an example of what is not working:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:orientation="vertical">
<TextView android:id="@+id/popupTitle" android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/popupContent"
android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</LinearLayout>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/img_30x30_px" />
</LinearLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了类似的问题,我发现 TableView 布局对我有用。这花了一段时间,但您可以使用拉伸和收缩列属性来更改列扩展方式以匹配内容的行为。
请注意,您应该能够将文本的 LinearLayout 设置为 fill_parent (以填充列空间)。
阅读本文,了解 TableRow 的工作原理 http://developer.android.com/resources /tutorials/views/hello-tablelayout.html
(恐怕我没有使用 Android 机器,所以我无法测试上面的代码)。
I've had a similar problem and i found that the TableView layout worked for me. It took a while but you can play with the stretch and strink columns proeprties to change the behaviour of how the columns expand to match there content.
Note that you should be able to set the linearLayout of your text to fill_parent (to fill the column space).
Read this on how TableRow works http://developer.android.com/resources/tutorials/views/hello-tablelayout.html
(Afraid i'm not on a machine with Android so i couldn't test the above code).
非常感谢埃米尔!有用!你让我度过了周末! :)
我必须立即尝试(虽然是周五晚上),这就是我的 xml 现在的样子:
Thank you so much Emile! It works! You made my weekend! :)
I had to try it right away (althought it's friday evening), and here's what my xml now looks like: