我是java和android的新手。目前我在学校学习java。我刚刚开始使用这个计算器只是为了让我的手在android开发。我现在的问题是,当我将应用程序部署到模拟器(手机大小480x800)看起来像Pic 001,但当我将它部署到我的Kindle fire第一代(1024x600,我相信)看起来像Pic 002.我怎么能做它在每部手机中看起来都一样。
答案 0 :(得分:0)
为了让您的按钮填满整个屏幕宽度,请将其放入标记Button
:
android:layout_width="0dp" android:layout_weight="1"
而不是:
android:layout_width="80dp"
如果您希望按钮更高:
- 在您的代码中Button
将android:layout_height="80dp"
更改为android:layout_height="match_parent"
- 在包含按钮的代码LinearLayout
中,将android:layout_height="wrap_content"
更改为android:layout_height="0dp" android:layout_weight="1"
- 在您的代码TextView
中将android:layout_height="wrap_content"
更改为android:layout_height="0dp" android:layout_weight="X"
,其中X是为您提供正确比例的值。
您将收到一条警告,告知您嵌套的重量不利于表演,但这是我知道的唯一方法。
通常,如果希望组件填充空白区域,请将宽度或高度设置为0dp并添加权重。权重将定义想要填充空间的元素的比例。
我希望它会对你有所帮助。