JavaでFadeInおよびFadeOutAndroidアニメーションを使用するにはどうすればよいですか?
フェードインおよびフェードアウトのアニメーションは、アルファアニメーションクラスに基づいて機能します。この例は、JavaでのFadeInおよびFadeOutAndroidアニメーションの使用方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/login.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:id="@+id/parent" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:gravity="center" android:orientation="vertical"> <ImageView android:id="@+id/imageView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@mipmap/ic_launcher"/> <Button android:id="@+id/fadeIn" android:text="Fade In" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:id="@+id/fadeOut" android:text="Fade Out" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
上記のコードでは、imageviewと2つのボタンを使用しています。 FadeInボタンは画像ビューにフェードエンターアニメーションを提供し、FadeOutボタンは画像ビューにフェードエグジットアニメーションを提供します。
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage com.example.andy.myapplication; import android.animation.ObjectAnimator; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.animation.AlphaAnimation; import android.view.animation.Animation; import android.widget.Button; import android.widget.ImageView; public class MainActivity extends AppCompatActivity { @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final ImageView imageView = findViewById(R.id.imageView); Button fadeIn = findViewById(R.id.fadeIn); fadeIn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { AlphaAnimation alphaAnimation = new AlphaAnimation(0.0f, 1.0f); alphaAnimation.setDuration(1000); alphaAnimation.setRepeatCount(1); alphaAnimation.setRepeatMode(Animation.REVERSE); imageView.startAnimation(alphaAnimation); } }); Button fadeOut = findViewById(R.id.fadeOut); fadeOut.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { ObjectAnimator fadeOut = ObjectAnimator.ofFloat(imageView, "alpha", 1f, 0); fadeOut.setDuration(2000); fadeOut.start(); } }); } }
imageviewにフェードインアニメーションを提供するには、次のコードを使用します-
AlphaAnimation alphaAnimation = new AlphaAnimation(0.0f, 1.0f); alphaAnimation.setDuration(1000); alphaAnimation.setRepeatCount(1); alphaAnimation.setRepeatMode(Animation.REVERSE); imageView.startAnimation(alphaAnimation);
imageviewにフェードアウトアニメーションを提供するには、次のコードを使用します-
ObjectAnimator fadeOut = ObjectAnimator.ofFloat(imageView, "alpha", 1f, 0); fadeOut.setDuration(2000); fadeOut.start();
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-
次に、フェードインボタンをクリックすると、以下に示すように、imageviewにアニメーションが提供されます-
次に、フェードアウトアニメーションをクリックすると、以下に示すように、imageviewにフェードアウトアニメーションが提供されます-
-
Androidでマウスとキーボードを使用する方法
あなたが私たちのようなものなら、あなたはあなたの携帯電話やタブレットで生産的に働くのに苦労するかもしれません。それはすべて私たちの頭の中にあるのでしょうか、それともマウスとキーボードの感覚がどういうわけか私たちをゾーンに正しく入れているのでしょうか? Androidデバイスの大部分は、主要な入力方法として指を使用します。それはそのような欠点です。数字を使用してデバイスを制御することは、マウスやキーボードを使用する場合ほど流動的ではありません。 コンピューターの入力デバイスを携帯電話やタブレットで使用できたら素晴らしいと思いませんか?良いニュースはあなたができるということです。パソコンのマウ
-
AndroidTVでADBを設定して使用する方法
AndroidスマートフォンでもAndroidTVでも、オペレーティングシステムの性質は変わりません。つまり、Android TVは、他のAndroidデバイスと同じように調整できます。 Androidアプリのサイドローディングなど、いくつかの深刻な調整を実行することを計画している場合は、Android Debug Bridge(ADB)の助けが必要になります。 ADBを使用してAndroidTVをPCに接続する方法を見てみましょう。 PCでADBを設定する方法 もちろん、最初のステップはシステムにADBをインストールすることです。これを行うには、AndroidDevelopersWebサ