0

私はいくつかのimageButtonを備えた画面を持っています。モバイルでは問題なく見えますが、タブレットではそれらが欲しいです。

ということで、9-patchをやってみましたが、button.9.pngの使い方がわかりません。

ldpi、mdpi、hdpi、xhdpi のイメージを作成します。それらはすべて name.9.dpi です。

画面サイズに応じてアプリのサイズを変更するにはどうすればよいですか?

これは私のレイアウトです:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:background="@drawable/background"
>

<ImageButton
    android:id="@+id/account_but"
    android:background="@null"
    android:contentDescription="@string/accountDesc"
    android:layout_marginTop="50dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_usos" />

<ImageButton
    android:id="@+id/alquilar_but"
    android:background="@null"
    android:contentDescription="@string/alquilarDesc"
    android:layout_marginTop="5dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_alquilar" />


<ImageButton
    android:id="@+id/paradas_but"
    android:background="@null"
    android:contentDescription="@string/paradasDesc"
    android:layout_marginTop="5dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_paradas" />

<ImageButton
    android:id="@+id/noticias_but"
    android:background="@null"
    android:contentDescription="@string/noticiasDesc"
    android:layout_marginTop="5dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_noticias" />

<ImageButton
    android:id="@+id/incidencia_but"
    android:background="@null"
    android:contentDescription="@string/incidenciaDesc"
    android:layout_marginTop="5dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_incidencia" />

 <ImageButton
    android:id="@+id/informacion_but"
    android:background="@null"
    android:contentDescription="@string/infoDesc"
    android:layout_marginTop="5dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/boton_informacion" />


<ImageButton
        android:id="@+id/banner_but"
        android:background="@null"
        android:contentDescription="@string/infoDesc"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:src="@drawable/banner" />  

</LinearLayout>
4

1 に答える 1

0

これを広く見てください。画像とさまざまな dpi フォルダーで何をしたいのかを説明します。

9 パッチは主にストレッチに使用されるため、異なる密度に対応する必要はありません。それらは通常、より大きなビューの背景とソースを占めるように引き伸ばされる非常に小さな画像です。

于 2013-03-18T17:09:26.123 に答える