Questions tagged «stretch»

12
CSS Div拉伸100%页面高度
我在页面的左侧有一个导航栏,我希望它可以延伸到页面高度的100%。不仅是视口的高度,还包括在滚动之前隐藏的区域。我不想使用JavaScript来完成此任务。 可以在HTML / CSS中完成吗?
195 css  height  max  stretch 

8
Horizo​​ntalAlignment =拉伸,最大宽度和向左对齐?
这似乎应该很容易,但我很困惑。在WPF中,我想要一个TextBox,它可以扩展到其父级的宽度,但只能扩展到最大宽度。问题是我希望它在其父项中保持合理。要使其伸展,您必须使用Horizo​​ntalAlignment =“ Stretch”,但是结果将居中。我已经尝试过Horizo​​ntalContentAlignment,但似乎没有任何作用。 如何使这个蓝色文本框随窗口大小而增长,最大宽度为200像素,并保持对齐状态? <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <StackPanel> <TextBox Background="Azure" Text="Hello" HorizontalAlignment="Stretch" MaxWidth="200" /> </StackPanel> </Page> 诀窍是什么?
95 wpf  xaml  alignment  stretch 

4
Android中ImageView的最大宽度和高度
所以我有一个ImageView设置 android:maxHeight="100px" android:maxWidth="250px" android:minHeight="100px" android:minWidth="250px" android:scaleType="centerInside" 该图像视图用于显示从图库或照相机获得的图片。在这两种情况下,都不会调整图像的大小以适合imageview的大小,它只是根据需要扩展其空间。 知道如何使它停留在这些范围内吗? <?xml version="1.0" encoding="utf-8"?> <EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/txtDescription" android:layout_below="@+id/txtSubject" android:inputType="textMultiLine" android:height="80px" android:hint="@string/description"></EditText> <EditText android:layout_height="wrap_content" android:layout_below="@+id/txtDescription" android:layout_width="fill_parent" android:id="@+id/txtMorada" android:hint="@string/address" /> <ImageButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_below="@+id/txtMorada" android:id="@+id/btGPS" android:layout_alignParentLeft="true" android:src="@drawable/ic_menu_compass"></ImageButton> <ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_below="@+id/btGPS" android:layout_marginTop="25px" android:id="@+id/imgPoint" android:src="@drawable/google_logo_small" android:maxHeight="100px" android:maxWidth="250px" android:minHeight="100px" android:minWidth="250px" android:scaleType="centerInside"></ImageView> <ImageButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_toRightOf="@+id/imgPoint" android:id="@+id/btGallery" …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.