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

AndroidでDrawableの色を変更するにはどうすればよいですか?


この例は、AndroidでDrawableの色を変更する方法を示しています。

ステップ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: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"
   android:background="@drawable/background"
   android:id="@+id/activity_main"
   android:orientation="vertical"
   tools:context=".MainActivity"
   tools:ignore="InvalidId">
</LinearLayout>

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

に追加します
package com.app.sample;
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.LinearLayout;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      LinearLayout your_Layout = (LinearLayout) findViewById(R.id.activity_main);
      AnimationDrawable animationDrawable = (AnimationDrawable) your_Layout.getBackground();
      animationDrawable.setEnterFadeDuration(4000);
      animationDrawable.setExitFadeDuration(4000);
      animationDrawable.start();
   }
}

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

に追加します
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="https://schemas.android.com/apk/res/android">
   <item
      android:drawable="@drawable/gradient1"
      android:duration="4000" />
   <item
      android:drawable="@drawable/gradient2"
      android:duration="4000" />
</animation-list>

ステップ5 −次のコードをres / drawable / gradient1.xml

に追加します
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android">
   <gradient android:angle="225" android:endColor="#044fab" android:startColor="#21d6d3" />
</shape>

ステップ6 −次のコードをres / drawable / gradient2.xml

に追加します
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android">
   <gradient android:angle="45" android:endColor="#933c94" android:startColor="#517f95" />
</shape>

ステップ7 −次のコードをManifests / AndroidManifest.xml

に追加します
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.app.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でDrawableの色を変更するにはどうすればよいですか?


  1. Androidでキーボードを変更する方法は?

    カスタマイズはAndroidOSの出現のバックボーンであり、そのような機能がAndroidフォンのデフォルトまたはストックキーボードを変更するとします。この変更は、Samsung、Google、Huawei、Xiaomiなどの携帯電話のブランドに関係なく行うことができます。 在庫のキーボードのほとんどは優れていますが、特定のユーザー要件については、ユーザーが別のキーボードを必要とする場合があります。たとえば、別の言語でキーボードを使用したり、方程式に数学記号を入力したりできますが、必要な機能はユーザーのデフォルトの電話キーボードではサポートされていません。 。 Androidキーボードを変

  2. Android 6.0 で USB 設定を変更する方法

    Android 6.0 は、最新のほとんどのデバイスと互換性のあるプラットフォームです。一部の企業は Android Marshmallow の展開を開始していますが、多くの携帯電話はこのバージョンの Android に更新されていません。お使いの Android スマートフォンが Android 6.0 にアップグレードされていて、PC に接続するたびにデフォルトの USB 構成が充電モードに設定されていることに気付いたはずです。この新しい USB 設定を変更したい場合は、適切な場所にいます。 Android で USB 設定を変更する方法を理解するのに役立つ完璧なガイドをお届けします。