嗨,伙计们:) 我正在尝试使用按钮和textview运行一个简单的“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”在布局的宽度和高度上是否正确?
答案 0 :(得分:5)
解决方案:在manifest.xml中添加<uses-sdk android:minSdkVersion="4" />
答案 1 :(得分:0)
我认为应该有fill_parent
答案 2 :(得分:0)
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
试试这个......它可能有用。