インストールされている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"> <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/listView" /> </RelativeLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますimport android.content.pm.ApplicationInfo; import android.content.pm.PackageInfo; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.ArrayAdapter; import android.widget.ListView; import java.util.List; public class MainActivity extends AppCompatActivity { ListView listView; ArrayAdapter arrayAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); listView = findViewById(R.id.listView); InstalledApps(); } private void InstalledApps() { List<PackageInfo> list = getPackageManager().getInstalledPackages(0); for (int i = 0; i<list.size(); i++){ PackageInfo packageInfo = list.get(i); if((packageInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0){ String appName = packageInfo.applicationInfo.loadLabel(getPackageManager()).toString(); Log.e("App List" + Integer.toString(i), appName); arrayAdapter = new ArrayAdapter(this, R.layout.support_simple_spinner_dropdown_item, list); listView.setAdapter(arrayAdapter); } } } }
ステップ4 -次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <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> </application> </manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–
-
Windowsにインストールされているすべてのプログラムのリストを取得する方法:5つの方法
おそらく何年にもわたってWindowsPCに多くのプログラムをインストールしてきましたが、すべてを覚えているとは限りません。 そのため、PCにインストールされているソフトウェアのリストを取得する方法を知っておくと便利です。また、新しいマシンに移動して同じプログラムを維持したい場合や、スペースを解放するために整理する必要のあるアプリをすばやく確認したい場合にも役立ちます。 Windowsツールとサードパーティプログラムの組み合わせを使用して、Windows10にインストールされているプログラムのリストを取得する複数の方法を見てみましょう。 1.レジストリとPowerShellを使用してインス
-
Androidでアドウェアを取り除く方法
アドウェアは、ユーザーがオンラインのときにバナーやポップアップなどの不要な広告コンテンツを自動的にダウンロードまたは表示する悪意のあるアプリケーションです。アドウェアは、Androidエコシステムを悩ませているさまざまな形式のマルウェアの一部であり、Androidデバイスに壊滅的な打撃を与えることはほとんどありません。 アドウェアは、サードパーティのアプリストアやWebサイトからアプリケーションをダウンロードしたり、悪意のあるリンクをクリックしたり、無意識のうちに悪意のあるアプリケーションをインストールしたりすると、ユーザーのスマートフォンに感染する可能性があります。アドウェアを取り除くこと