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

Androidのカスタムプログレスバー?


この例は、プログレスバーandroidを作成する方法を示しています

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

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
   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"
   tools:context=".MainActivity">
   <ProgressBar
      android:layout_width="150dp"
      android:layout_height="150dp"
      style="?android:progressBarStyleLarge"
      android:progress="50"
      android:id="@+id/progressBar"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      android:progressDrawable="@drawable/circle"/>
</android.support.constraint.ConstraintLayout>

ステップ3 −ドローアブルリソースファイルを作成し、circle.xmlという名前を付けて、次のコードを追加します-

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android"
   android:shape="ring"
   android:innerRadiusRatio="2.5"
   android:thickness="4dp"
   android:useLevel="true">
   <solid android:color="@color/colorAccent"/>

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

に追加します
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ProgressBar;
public class MainActivity extends AppCompatActivity {
   ProgressBar progressBar;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      progressBar = findViewById(R.id.progressBar);
      progressBar.setMax(100);
      progressBar.setProgress(20);
   }
}

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

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.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のカスタムプログレスバー?


  1. Tkinterでダウンロードプログレスバーを作成するにはどうすればよいですか?

    ファイルのダウンロード、ファイルの追跡など、ソースやファイルと相互作用するアプリケーションを作成しているとしましょう。このようなアプリケーションのプログレスバーを作成するには、 tkinter.ttkを使用します プログレスバーを含むパッケージ モジュール。 最初に、プログレスバーのオブジェクトをインスタンス化します 水平の向きがあります 。次に、プログレスバーの値を増やして更新し続ける関数を定義します。 例 次の例では、値を更新してダウンロードプログレスバーを作成しました。 #Import the required libraries from tkinter import * from

  2. Androidでカスタムジェスチャーを追加する方法

    Androidデバイスでカスタムジェスチャーを作成することは、時間を節約するための優れた方法です。これらのカスタムジェスチャを作成することで、デバイスをカスタマイズして、新しいタブを開くなどの特定のタスクを実行するのに最も快適な動きを使用できます。 ディスプレイの上部から下にスワイプしてアクセスしやすくすることで、現在のアプリにアクセスできたら素晴らしいと思いませんか?これらのカスタムジェスチャがないと、歯車、WiFiなどの機能にしかアクセスできません。カスタムジェスチャを詳しく見て、自分に適しているかどうかを確認しましょう。 オールインワンジェスチャアプリでカスタムジェスチャを追加 An