0

Android アプリケーションが 1 つあり、幅と高さがwrap_content.

私のXMLコードはmain.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher"
        android:contentDescription="Move" />
</LinearLayout>

私のアクティビティコードはMoveApplicationActivity.java

package com.move;
import android.app.Activity;
import android.os.Bundle;
public class MoveApplicationActivity extends Activity 
{
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

私のMoveApplication Manifest.xmlコードは

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.move"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk android:minSdkVersion="15" />
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".MoveApplicationActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

この太字の行を に追加することを忘れないでくださいManifest.xml

android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar"

アプリケーションウィンドウを移動する方法がわかりません。プログラムでガイドしてください。

前もって感謝します。

4

1 に答える 1

0

通常の手段ではこれを行うことはできません。

アクティビティは画面全体をカバーし、それを変更することはできません。

あなたがしようとすることができるのは、透明なテーマでアクティビティを作成することです. 次に、特定の幅と高さを持つ DialogFragment を作成できます。

これにより、アプリが実際に画面全体を占めているときに、アプリが特定のサイズに見えるようになります。

ただし、DialogFragment の位置の X、Y 座標を制御できるとは思いません。

于 2012-07-06T17:31:52.603 に答える