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" android :layout_margin= "16dp" tools :context= ".MainActivity" > <TextView android :layout_width= "match_parent" android :layout_height= "wrap_content" android :layout_centerInParent= "true" android :text= "@string/lorem" android :textSize= "18sp" /> </RelativeLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage app.tutorialspoint.com.sample ; import android.support.v7.app.AppCompatActivity ; import android.os.Bundle ; 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= "AppBaseTheme" 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" parent= "AppBaseTheme" > <item name= "android:textViewStyle" > @style/RobotoTextViewStyle </item> <item name= "android:buttonStyle" > @style/RobotoButtonStyle </item> </style> <style name= "RobotoTextViewStyle" parent= "android:Widget.TextView" > <item name= "android:fontFamily" > sans-serif-light </item> </style> <style name= "RobotoButtonStyle" parent= "android:Widget.Holo.Button" > <item name= "android:fontFamily" > sans-serif-light </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" > <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フォンの各アプリにユニバーサルボリューム設定はありません。アプリを使用する前に、必要に応じてすべてのアプリの音量を調整する必要があります。たとえば、音楽を大音量で聴きたいが、ビデオゲームのバッシング音はフルボリュームでは心地よくない場合があります。 別のアプリに切り替えるたびに音量を調整するのが面倒な場合は、プロセスを自動化したくない場合があります。 App Volume Controlは、アプリの音量を完全に制御して、アプリを起動するとすぐに自動的に調整できるアプリの1つです。 AppVolumeControlがどのようにあなたの生活を楽にすることができるか見てみましょう。
-
Outlook for Android アプリでメールを設定する方法
Outlook は、何十年にもわたって最も人気のあるメール管理ソリューションの 1 つであり、世界中の複数の個人や企業によって使用されています。コンピューターで電子メールにアクセスするために使用する主要なツールかもしれませんが、スマートフォンについて話すときは確かに同じではありません.しかし、Android スマートフォンで Outlook を構成するのは非常に簡単で、数分で完了します。どのクライアントよりも優れた方法で電子メールを整理するだけでなく、スパマーや犯罪者があなたに到達するのを困難にします.したがって、読者がAndroidでOutlookをセットアップする方法を学ぶことは価値があり