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

ランドスケープモードでアクティビティを確認する方法は?


この例は、ランドスケープモードでアクティビティを確認する方法を示しています。

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

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

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:app="https://schemas.android.com/apk/res-auto"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">

   <TextView
      android:id="@+id/conf"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Hello World!"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

上記のコードでは、モード名を表示するためにテキストビューを使用しています。

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

に追加します
package com.example.myapplication;

import android.content.res.Configuration;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
   TextView conf;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      conf = findViewById(R.id.conf);
   }
   @Override
   public void onConfigurationChanged(Configuration _newConfig) {
      super.onConfigurationChanged(_newConfig);
      if (_newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
         conf.setText("It is landscape");
      }
}
}

ステップ3 −次のコードをAndroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
package="com.example.myapplication">

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

ランドスケープモードでアクティビティを確認する方法は?


  1. Androidアプリで透過的なアクティビティを作成するにはどうすればよいですか?

    この例は、Androidで透過的なアクティビティを作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / values/styles.xmlに追加します。 <resources>    <!-- Base application theme. -->    <style name="Theme.AppCompat

  2. Androidで分割画面モードを使用する方法

    Androidスマートフォンでは、分割画面モードを使用すると、スマートフォンで2つのアプリを同時に表示できます。あるアプリから別のアプリにテキストをコピーして貼り付けようとしている場合、またはTwitterのスキャン中にビデオを見たい場合は、分割画面モードでそれを行うことができます。 分割画面モードに必要なもの Androidの分割画面モードを使用する場合は、Android7.0Nougat以降を実行している必要があります。この機能をサポートするアプリも必要です。 たとえばSamsungなどの一部の電話メーカーは、ユーザーにさまざまな分割画面モード機能を提供しています。この方法は、どのGo