1

私は 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

これを修正できますか?

4

1 に答える 1