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

XMLスタイルを使用してAndroidでカスタムボタンを作成するにはどうすればよいですか?


この例は、XMLスタイルを使用して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"
   tools:context=".MainActivity">

   <Button
      android:id="@+id/customButton"
      android:layout_width="200dp"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      android:background="@drawable/custom_button"
      android:text="My Custom button"/>

   <Button
      android:id="@+id/customButton2"
      android:layout_width="200dp"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      android:layout_below="@id/customButton"
      android:layout_marginTop="24sp"
      android:background="@drawable/custom_button2"
      android:text="My Custom button"/>

   <Button
      android:id="@+id/customButton3"
      android:layout_width="200dp"
      android:layout_height="200dp"
      android:layout_centerInParent="true"
      android:layout_above="@id/customButton"
      android:layout_marginBottom="24sp"
      android:layout_marginTop="24sp"
      android:background="@drawable/custom_button3"
      android:text="My Custom button"/>
</RelativeLayout>

ステップ3 – res / drawableを右クリックし、[新規]→[Drawableリソースファイル]を選択して、custom_dialog.xmlに次のコードを追加します

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android"
   android:shape="rectangle">

   <stroke android:color="#66F9B9" android:width="4dp"/>
   <corners android:radius="16sp"/>
</shape>

ステップ4 – res / drawableを右クリックし、[新規]→[Drawableリソースファイル]を選択して、custom_dialog2.xmlに次のコードを追加します

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android"
   android:shape="rectangle">

   <gradient android:startColor="#2AF598" android:centerColor="#ff1493"
      android:endColor="@color/colorPrimary"/>
   <corners android:radius="50dp"/>
</shape>

ステップ5 – res / drawableを右クリックし、新規→Drawableリソースファイルを選択して、custom_dialog3.xmlに次のコードを追加します

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android"
   android:shape="rectangle">

   <solid android:color="#80121a" />
   <corners android:radius="999dp"/>
</shape>

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

に追加します
package app.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);
   }
}

ステップ7 -次のコードを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つを開き、ツールバーの[アイコンの実行]をクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–
XMLスタイルを使用してAndroidでカスタムボタンを作成するにはどうすればよいですか?


  1. AndroidアプリでXMLファイルを使用してアニメーションを作成するにはどうすればよいですか?

    この例は、AndroidアプリでXMLを使用してアニメーションを作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="h

  2. CSSを使用してカスタムカーソルを作成する方法

    .cur(Internet Explorerの場合)、. gif、.png(Chrome、Firefox、Safariの場合)などの拡張子を持つカスタムカーソルイメージを作成し、CSSカーソルプロパティを使用して要素に適用し、URLに設定することができます。さらに、auto、default、pointerなどの一般的なカーソル値。 解決策 Selector {    cursor: url("/*path to custom cursor file*/"), generic cursor; } 例 例を使用してカスタムカーソルを作成する方法を見てみまし