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

Androidビューの上下に境界線を追加するにはどうすればよいですか?


この例は、Androidビューの上下に境界線を追加する方法を示しています。

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

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

に追加します。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="https://schemas.android.com/apk/res/android">
   <item>
      <shape android:shape="rectangle">
         <stroke
            android:width="2dp"
            android:color="#e10606" />
         <solid android:color="#9bce64" />
      </shape>
   </item>
   <item android:bottom="2dp" android:top="2dp">
      <shape android:shape="rectangle">
         <stroke android:width="2dp" android:color="#9bce64" />
      </shape>
   </item>
</layer-list>

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

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:layout_margin="16dp">
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Adding Border in Top and Bottom of an Android View" />
   <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="16dp"
      android:background="@drawable/border_top_bottom"
      android:padding="30dp"
      android:text="Top Bottom Border in TextView"
      android:textColor="#000000"
      android:textSize="18sp" />
   <Button
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="16dp"
      android:background="@drawable/border_top_bottom"
      android:text="Top Bottom Border in Button" />
</LinearLayout>

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

<resources>
   <string name="app_name">Adding Border to an Android View</string>
</resources>

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

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Hello World!"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

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

に追加します
package com.example.sample1;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.top_bottom_border_in_android_view);
   }
}

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

に追加します
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:dist="https://schemas.android.com/apk/distribution"
   package="com.example.sample1">
   <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>
   <dist:module dist:instant="true" />
</manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、[実行]をクリックします Androidビューの上下に境界線を追加するにはどうすればよいですか? ツールバーのアイコン。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–

Androidビューの上下に境界線を追加するにはどうすればよいですか?


  1. 円形のimageViewandroidに影と境界線を追加する方法は?

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

  2. Androidで任意のページの上部または下部にすばやくスクロールする方法

    Webサイトで実際に見たいコンテンツに到達するために、100万回下にスクロールしなければならない場合、誰もがイライラします。ページの上部で本当に必要なものを見つけたときも同じですが、下部にいるため、上部に戻るには多くのスワイプが必要になります。急いでいると事態はさらに悪化し、スクロールバーを上下に押し続ける時間は本当にありません。そのような場合に何ができるでしょうか? 幸いなことに、Androidデバイスの任意のページの下部または上部にすばやくジャンプできるOneClickScrollと呼ばれるアプリがあります。確認してみましょう。 注: 次の手順を実行する前に、Androidフォンをルー