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:id="@+id/rl" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#f2f6f4" android:padding="10dp" tools:context=".MainActivity"> <TextView android:id="@+id/tvLayout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/button" android:layout_centerInParent="true" android:layout_marginTop="16sp" android:text="Portrait Mode" android:textSize="24sp" android:textStyle="bold" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="Show Orientation mode" /> </RelativeLayout>
ステップ3 –リソースを右クリックしてレイアウトファイルを作成し、ファイルに名前を付け、[使用可能な修飾子]から[方向]を選択します。
>>オプションをクリックします。
UIモードからランドスケープを選択します。
次のコードをres/layout / land / 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:id="@+id/tvLayout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_marginStart="64dp" android:layout_toEndOf="@id/button" android:text="Landscape Mode" android:textSize="24sp" android:textStyle="bold" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginStart="128sp" android:text="Show Orientation mode" /> </RelativeLayout>
ステップ4 −次のコードをsrc / MainActivity.java
に追加しますimport android.content.res.Configuration import android.os.Bundle import android.widget.Button import android.widget.TextView import android.widget.Toast import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() { lateinit var textView: TextView lateinit var button: Button override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) title = "KotlinApp" textView = findViewById(R.id.tvLayout) button = findViewById(R.id.button) button.setOnClickListener { if (button.resources.configuration.orientation == Configuration.ORIENTATION_PORTRAIT) { Toast.makeText(this@MainActivity, " We are in portrait mode", Toast.LENGTH_SHORT).show() } else { Toast.makeText(this@MainActivity, "We are in Landscape mode", Toast.LENGTH_SHORT).show() } } } }
ステップ5 -次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.example.q11"> <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でカスタム通知レイアウトとテキストの色を作成するにはどうすればよいですか?
この例は、Androidでカスタム通知レイアウトとテキストの色を作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.Con
-
PCとAndroid用のGoogleセーフサーチをオンにする方法
インターネットは世界の情報スーパーハイウェイです。つまり、毎日の消費にオンラインで利用できるたくさんの便利なものに加えて、オンラインでニーズを検索するときに遠く離れたままにしておきたい、同じ量の不快で危険なコンテンツがあります。その望ましくないコンテンツは、Google検索履歴に表示されて、オンラインプロファイルデータの一部になることから離れた1つの偶発的な検索用語です。幸い、Googleは、検索エンジンを使用しているときに、不快なコンテンツを除外する選択肢を提供しています。 PCでの検索コンテンツのフィルタリング 最初にメインのGmailページに移動して、Googleアカウントにアクセスし