Android“你好世界” Galaxy Tab 屏幕上的布局问题
大家好:)
我正在尝试运行一个带有按钮和文本视图的简单“Hello World”程序。 这是布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text"
android:layout_gravity="center_horizontal" />
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
android:layout_gravity="center_horizontal" />
</LinearLayout>
问题是它在三星 Galaxy Tab 分辨率的模拟器上看起来不太好。该视图并没有像我希望的那样占用所有可用空间,而只占用了一部分。 “match_parent”布局的宽度和高度是否正确?
Hi guys :)
I'm trying to run a simple "Hello World" program with a button and a textview.
This is the layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text"
android:layout_gravity="center_horizontal" />
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
android:layout_gravity="center_horizontal" />
</LinearLayout>
The problem is that it doesn't look good on the simulator with Samsung Galaxy Tab's resolution. The view doesn't take all available space as I wish but only a portion. Is "match_parent" correct in layout's width and height?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解决方案:在manifest.xml中添加
SOLUTION: add
<uses-sdk android:minSdkVersion="4" />
in the manifest.xml试试这个...它可能会起作用。
try this... it may work.
我认为应该有
fill_parent
I think there should be
fill_parent