Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android OSでアプリケーションを起動すると、使用可能な画面全体が表示されます。これは望ましくありません。アプリが画面の一部、たとえば「10,10,100,100」の長方形だけを占めるようにしたい。では、これをどのように達成するのですか?
AndroidManifest.xmlファイルでテーマを宣言することにより、単一のアクティビティにダイアログテーマを使用できます。
AndroidManifest.xml
<activity android:theme="@android:style/Theme.Dialog" android:name="your.package.and.ActivityName"/>
これにより、のようにActivity見えますDialog。
Activity
Dialog