问题标签 [fill-parent]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 在横向大型设备上查看时 Android Imageview 失真
我目前正在尝试使用 imageview 显示图像,该图像只有一定的高度,但它应该填满屏幕的整个宽度。在纵向模式和手机(三星 Galaxy Note 2)上的横向模式下,它显示得很好,但是当我在平板电脑(三星 Galaxy Tab)上尝试时,纵向模式看起来仍然很棒但是在横向模式下发生的事情是图像看起来失真,图像覆盖了整个宽度,但高度似乎已关闭。
我确实在图形布局上检查过,但看起来还不错。
这是我的图像视图:
我做了什么让它变形的事情吗?如何使图像正确显示在平板电脑的横向视图上?
android-layout - 相对布局不适合整个屏幕
绿色背景是设备下的相对布局,即使我已将布局设置为 fill_parent 或 match_parent,它也不适合整个屏幕(中间有一个空白区域)。
这是我的应用程序的 xml 代码
android - 将fill_parend添加到子对象时Android网格布局超出屏幕
顾名思义,我的布局有问题。
我使用网格布局来构建我的布局。并且我使用重力和填充来(至少尝试)使其“响应”。
问题是,在遇到正确的单元格上执行此操作时,单元格会延伸到屏幕外,并且不会停在屏幕边缘。
这是我的 XML 代码。
我还试图让所有单元格在屏幕上的整个宽度上连接。这是因为“line.xml”底部边框。
目前它看起来像这样
android - 如何去除自定义ActionBar中的边距和应用程序图标?
我用自定义的 ActioBar 创建了一个应用程序。它有效,但不适用于所有设备。在联想k990上是不正确的。- 对不起 - 联想k900
它应该看起来像这样
第一个变体
第二种变体
第三种变体
你能帮助我吗?
android - How to make the width of a grid view 100% across the screen
I have a grid view inside my layout and I am trying to make it stretch all the way across the screen. My XML for this gridview follows below.
The grid view does not completely fill the screens width. There are these small margins on the side. How do I get rid of these margins on the sides of the grid view completely? In other word, I want the width of the grid view to be full width. On the other hand, fill_parent does make the grid view's width cover 95% of the width of the screen, but there are small margins on the side of the screen. Unfortunately, I am not allowed to post an image since I don't have enough reputation.
android - (Android Studio) 应用背景图片不填满屏幕
我是应用程序编程的新手,需要一些帮助。我正在 Android Studio 上构建一个简单的应用程序,但我的应用程序的背景图像(我将其命名为“green_background”)并没有完全填满屏幕。我无法提供屏幕截图,因为我在 Stack Overflow 上没有 10 名声望。
这是我的应用程序的活动编码。我只添加了 1 条文本、2 个按钮、2 个计时器和 1 个图像视图:
如何让我的背景图片 (green_background) 完全填满手机屏幕?
android - 为什么带有“fill_parent”的相对布局中的图像在下方隐藏按钮?
我正在尝试在相对布局中增加图像的大小。现在,它的宽度和高度设置为wrap_content
. 当我设置它们fill_parent
时,图像会变大,但会将下方的按钮推离显示屏。相关的 XML 如下。我究竟做错了什么?
编辑:感谢所有答案,但到目前为止,如果我将图像的高度设置为fill_parent
or match_parent
,它总是延伸到显示器的底部,无论按钮是在还是在相对布局之外。为什么相对布局会忽略它下面的内容?
android - 布局不填充 android 2.3 中的框架布局
我有一个 FrameLayout,里面有两个 LinearLayout。对于 Android 4.x 版,它可以正常工作,但对于 2.3 版,第二个 LinearLayout 不会垂直填充 FrameLayout。谁能告诉我为什么?顺便说一句,我知道我将第二个 LinearLayout 设置为不可见,但我稍后会在代码中显示它:)
android - Expandablelistview 布局未填充父级
我有一个 3 个级别的可扩展列表视图。这是我的布局文件:
activity_main.xml
load_deadlines_headers.xml
load_deadlines_children.xml
load_deadlines_subchildren.xml
我的可扩展列表的第二级和第三级项目( load_deadlines_children.xml 和 load_deadlines_subchildren.xml )没有填充 layout_width 的父级。我正确指定
在代码中,但无论如何它不起作用。我正在寻找有关此麻烦的建议。
android - Android:带有 match_parent 的布局应占用剩余空间或共享
我有一个水平线性布局,包含两个布局。我希望正确的布局与内容一样宽(wrap_content)。左侧布局应填满剩余空间。
我尝试在左侧布局(相对布局)上使用“match_parent”,在右侧布局(线性布局)上使用“wrap_content”,但左侧布局占据了所有空间。
我该如何解决这个问题,左侧布局只占用空间,而不是所有空间。就像让正确的布局首先占据它的空间一样。
编辑::对不起,我想发布一张图片,但不能,这是代码:
左侧的相对布局占用了所有空间(屏幕变为绿色)。我希望相对布局采用宽度,该宽度来自线性布局,因此您可以在布局中看到按钮。