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

Androidでアクションバーを永続的に無効にする方法は?


この例は、Androidでアクションバーを永続的に無効にする方法を示しています。

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

ステップ2 −次のコードをres / layout / activity_main.java

に追加します。
<? 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 :orientation= "vertical"
   tools :context= ".MainActivity" >
   <TextView
      android :layout_width= "match_parent"
      android :layout_height= "wrap_content"
      android :layout_centerInParent= "true"
      android :gravity= "center"
      android :text= "No Action Bar"
      android :textAppearance= "@style/Base.TextAppearance.AppCompat.Large" />
</RelativeLayout>

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

に追加します
package app.tutorialspoint.com.sample ;
import android.os.Bundle ;
import android.support.v7.app.AppCompatActivity ;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate (Bundle savedInstanceState) {
      super .onCreate(savedInstanceState) ;
      setContentView(R.layout. activity_main ) ;
   }
}

ステップ4 −次のコードをres / values / styles.xml

に追加します
<resources>
   <!-- Base application theme. -->
   <style name= "AppTheme" parent= "Theme.AppCompat.Light.DarkActionBar" >
      <!-- Customize your theme here. -->
      <item name= "colorPrimary" > @color/colorPrimary </item>
      <item name= "colorPrimaryDark" > @color/colorPrimaryDark </item>
      <item name= "colorAccent" > @color/colorAccent </item>
   </style>
   <style name= "AppTheme.NoActionBar" >
      <item name= "windowActionBar" > false </item>
      <item name= "windowNoTitle" > true </item>
   </style>
</resources>

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

<? xml version= "1.0" encoding= "utf-8" ?>
<manifest xmlns: android = "https://schemas.android.com/apk/res/android"
   package= "app.tutorialspoint.com.sample" >
   <uses-permission android :name= "android.permission.VIBRATE" />
   <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アクティビティでナビゲーションバーを永続的に非表示にする方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayou

  2. Android でオートコレクトを無効にする方法

    タイトルを読むと、Android でオートコレクトを無効にする理由を尋ねるでしょう。結局のところ、Android デバイスで入力エラーが発生する可能性はなくなりますよね?さらに、ユーザーが頻繁に使用する単語を使用するたびに学習するシステムです。 しかし、Android のオートコレクト機能が厄介で非生産的であることが判明する場合があります。そのときは、Android でオートコレクトをオフにすることをお勧めします。ただし、必要なときにオンに戻すことができます。 Android でオートコレクトを無効にする方法は、モデルによって異なる場合があります。 Android でオートコレクトを無効に