我只是在学习编写 Android 应用程序并且正在使用 Netbeans。我的 main.xml 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText android:layout_weight="1"
android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
问题是它看起来很模糊,而且 UI 元素真的很大。我在 7 英寸平板电脑上运行它,它看起来像这样:http: //i.imgur.com/eflfJRQ.png
我可以解决这个问题吗?