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

AndroidでプログラムでScrollViewを無効にする方法は?


この例は、AndroidでプログラムによってScrollViewを無効にする方法を示しています。

ステップ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"
   android:padding="16dp"
   tools:context=".MainActivity">
   <ScrollView
      android:id="@+id/scrollView"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
      <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:gravity="center"
         android:orientation="vertical"
         android:padding="16dp">
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
         <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
      </LinearLayout>;
   </ScrollView>
</RelativeLayout>

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

に追加します
import androidx.annotation.RequiresApi;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Build;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ScrollView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
   @RequiresApi(api = Build.VERSION_CODES.M)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      ScrollView scrollView = findViewById(R.id.scrollView);
      scrollView.setOnTouchListener(new View.OnTouchListener() {
         @Override
         public boolean onTouch(View v, MotionEvent event) {
            Toast.makeText(MainActivity.this, "ScrollView Disabled", Toast.LENGTH_SHORT).show();
            return true;
         }
      });
   }
}

ステップ4 −次のコードを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" />
            <ategory android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

AndroidでプログラムでScrollViewを無効にする方法は?


  1. プログラムでアプリケーションを終了する方法は?

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

  2. Android でオートコレクトを無効にする方法

    タイトルを読むと、Android でオートコレクトを無効にする理由を尋ねるでしょう。結局のところ、Android デバイスで入力エラーが発生する可能性はなくなりますよね?さらに、ユーザーが頻繁に使用する単語を使用するたびに学習するシステムです。 しかし、Android のオートコレクト機能が厄介で非生産的であることが判明する場合があります。そのときは、Android でオートコレクトをオフにすることをお勧めします。ただし、必要なときにオンに戻すことができます。 Android でオートコレクトを無効にする方法は、モデルによって異なる場合があります。 Android でオートコレクトを無効に