Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidのコンテキストとは何ですか?


定義

これは、アプリケーション/オブジェクトの現在の状態のコンテキストです。これにより、新しく作成されたオブジェクトが何が起こっているのかを理解できます。通常、これを呼び出して、プログラムの別の部分(アクティビティおよびパッケージ/アプリケーション)に関する情報を取得します。以下のプログラムでは、textViewを動的に作成し、コンテキストを渡したことがわかります。このコンテキストは、環境に関する情報を取得するために使用されます。

この例は、AndroidtextViewでコンテキストを表示する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/linearLayout"
   android:orientation="vertical"
   android:padding="16sp"
   tools:context=".MainActivity">
</LinearLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      LinearLayout linearLayout = findViewById(R.id.linearLayout);
      TextView textViewContext = new TextView(getApplicationContext());
      textViewContext.setTextSize(30);
      textViewContext.setText("Application Context");
      textViewContext.setTextColor(Color.RED);
      TextView textViewActivityContext = new TextView(this);
      textViewActivityContext.setTextSize(30);
      textViewActivityContext.setText("Activity Context");
      linearLayout.addView(textViewContext);
      linearLayout.addView(textViewActivityContext);
   }
}

ステップ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つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–

Androidのコンテキストとは何ですか?


  1. ストックAndroidとは正確には何ですか?

    「バニラ」Androidとも呼ばれるストックAndroidは、利用可能なAndroidオペレーティングシステムの最も基本的なバージョンです。ストックAndroidデバイスは、Googleによって設計および開発されたAndroidのコアカーネルを実行します。これは通常、携帯通信会社がインストールしたプログラムがないことで区別されます。たとえば、Verizonのネットワーク上のストックAndroidスマートフォンには、Verizonがインストールされたアプリは含まれません。多くのユーザーにとって、このブロートウェアを削除することは大きなインセンティブであり、デバイスの制御を取り戻すことができます。

  2. Android システム WebView とは?

    Android システム WebView (ASW) は、Android デバイスのアプリ リストや、場合によっては Google Play ストアの更新として見たことがあるかもしれません。この重要なシステム アプリは、直接インストールしたり使用したりするものではありませんが、Android オペレーティング システムの重要な部分であり続けています。 インストールした Android のバージョンに応じて、さまざまな形式で Android System WebView が表示されます。デバイスに関係なく、ASW (またはそのバージョン) を有効にして最新の状態にする必要があります。このガイド