起動時にAndroidアプリケーションを起動する方法は?
この例は、起動時にAndroidアプリケーションを起動する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="4dp" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World" android:textSize="24sp" android:layout_centerInParent="true" android:textStyle="bold"/> </RelativeLayout>
ステップ3 –新しいJavaクラス(StartAppOnBoot.java)を作成し、次のコードを追加します-
import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class StartAppOnBoot extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { Intent i = new Intent(context, MainActivity.class); i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(i); } } }
ステップ4 −次のコードをsrc / MainActivity.java
に追加しますimport android.os.Bundle; import android.support.v7.app.AppCompatActivity; public class MainActivity extends AppCompatActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
ステップ5 −次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".StartAppOnBoot" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="android.intent.action.QUICKBOOT_POWERON" /> </intent-filter> </receiver> </application> </manifest>
-
Androidでスクリーンタイムを確認する方法
スマートフォンは私たちの生活の非常に大きな部分を占めていますが、スマートフォンをじっと見つめている時間を見失いがちです。 幸い、AndroidでのスクリーンタイムはDigital Wellbeingアプリで確認できます。このアプリは、スマートフォンの合計使用量と個々のアプリでの滞在時間の両方を追跡します。 使用方法は次のとおりです。 Androidでスクリーンタイムを確認する DigitalWellbeingはAndroid9以降に組み込まれているアプリなので、追加のソフトウェアをインストールする必要はありません。 デジタルウェルビーイングとペアレンタルコントロールに移動して開始します
-
AndroidTVにPopcornTimeをインストールする方法
ポップコーンタイム Netflix、Hulu、HBOGoなどのプレミアムコンテンツストリーミングサービスの無料の代替手段です。明らかな理由で、PopcornTimeの使用に関連する法的な問題については議論しません。このソフトウェアをインストールする方法を探していたら、私の意見に関係なく、おそらくそれを使用するでしょう。 ポップコーンタイム これは、多くの開発者や設計者が多数のAPIをオープンソースプロジェクトにまとめた結果です。その結果は、間違いなく、急流の映画やテレビ番組を見る最も合理化された方法です。アプリケーションはまだベータ版ですが、Androidバージョンは十分に安定しており、十分