0

私はテレビ用のアプリケーションを設計しています。アプリをテレビ画面にロードすると、まだスマートフォンのサイズのままです。さまざまな dpi で遊んでいますが、機能していません。これに一日を費やした。

テレビ画面に収まるようにレイアウトを設計する手順は何ですか?

これは私のxmlファイルです:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:background="#FFFFFF"
    android:gravity="center" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:contentDescription="@string/logimgdesc"
        android:src="@drawable/logo" />

    <Button
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginRight="36dp"
        android:text="@string/start" />

    <Button
        android:id="@+id/btnDownload"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginRight="36dp"
        android:text="@string/download" />

    <Button
        android:id="@+id/btnStop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/spyonme"
        android:layout_alignBottom="@+id/spyonme"
        android:layout_alignLeft="@+id/btnLoadFP"
        android:text="@string/stop" />


</RelativeLayout>
4

1 に答える 1

0

複数の画面サイズのサポートを実装するには、さまざまな方法があります。Android デベロッパー サイトの複数画面のサポート ガイドを読むことをお勧めします。

于 2012-06-22T18:34:45.517 に答える