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" tools:context=".MainActivity"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_above="@id/button" android:text="Activity_One" android:gravity="center" android:layout_marginBottom="20sp" /> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Click here to start Second Activity!" android:layout_centerInParent="true" /> </RelativeLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますimport android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { Button button; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button)findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(MainActivity.this, SecondActivity.class); startActivity(intent); } }); } }
ステップ4 −新しいActivity(SecondActivity)を作成し、次のコードをres / layout/activity_second.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" tools:context=".SecondActivity"> <Button android:id="@+id/terminateButton" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Terminate all the activities" android:layout_centerInParent="true"/> </RelativeLayout>
ステップ5 −次のコードをsrc / SecondActivity.java
に追加しますimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.os.Process; public class SecondActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); Button button = (Button)findViewById(R.id.terminateButton); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finish(); } }); } protected void onDestroy(){ Process.killProcess(Process.myPid()); super.onDestroy(); } }
ステップ6 −次のコードを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=".SecondActivity"></activity> <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つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-
-
iOS 7 ですべての Safari タブを一度に閉じる方法
これは単純ですが、iOS 7 で開いているすべてのブラウザ タブを一度に閉じることができることに気付かないほど隠されています。通常は、表示される各カードの左上隅にある「x」を押し続けます。 Safari の新しいタブ ウィンドウに表示されます。 閉じるものが 1 つか 2 つだけの場合はこれでうまくいきますが、私のように iPhone で 30 個のタブを開いている場合は、次の手順ですべてを閉じることができます: 新しいタブ ボタンをクリックします。 2 つの正方形のように見えます。 「非公開」リンクをタップします。 [すべて閉じる] リンクをクリックします。 これで十分です。 個人的
-
すべての Android アプリを一度に自動的に更新する方法
Android は、世界で最も人気のあるオペレーティング システムです。何十億人もの人々に使用されている、強力で高度にカスタマイズ可能な驚くべきオペレーティング システムです。アプリは、すべての Android ユーザーに真にパーソナライズされた独自のエクスペリエンスを提供する上で重要な役割を果たします。アプリは、Android スマートフォンの魂と見なすことができます。一部のアプリはデバイスにプリインストールされていますが、その他のアプリは Play ストアから追加する必要があります。ただし、元のソースに関係なく、すべてのアプリは時々更新する必要があります。開発者は頻繁にアップデートをリリー