アンドロイドで文字列バッファを使用する方法は?
例に入る前に、文字列バッファとは何かを知っておく必要があります。 StringBufferクラスは、可変文字列を作成するために使用され、スレッドセーフです。この例は、Androidで文字列バッファを使用する方法について示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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:orientation="vertical" android:gravity="center_horizontal" android:layout_marginTop="100dp" tools:context=".MainActivity"> <EditText android:id="@+id/edit_query" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Enter string" /> <Button android:id="@+id/click" android:layout_marginTop="50dp" style="@style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" android:layout_width="wrap_content" android:background="#c1c1c1" android:textColor="#FFF" android:layout_height="wrap_content" android:text="Button" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text3" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text4" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
上記のコードでは、edittext、button、textviewsを使用しています。ユーザーがボタンをクリックすると、edittextからデータが取得され、文字列バッファメソッドで操作されます。操作データの結果がtextviewに追加されます
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage com.example.myapplication; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { EditText edit_query; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); edit_query = findViewById(R.id.edit_query); final TextView textView = findViewById(R.id.text); final TextView textView1 = findViewById(R.id.text1); final TextView textView2 = findViewById(R.id.text2); final TextView textView3 = findViewById(R.id.text3); final TextView textView4 = findViewById(R.id.text4); findViewById(R.id.click).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!edit_query.getText().toString().isEmpty()) { StringBuffer stringBuffer = new StringBuffer(edit_query.getText().toString()); textView.setText(" default String : " + stringBuffer); textView1.setText(stringBuffer.insert(0, "insert at 0 " + "tutorialspoint.com")); textView2.setText("Capacity is " + stringBuffer.capacity()); textView3.setText("Delete : " + stringBuffer.delete(1, 3)); textView4.setText("append : " + stringBuffer.append(" appended to string buffer")); } } }); } }
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-
上記の結果では、さまざまな操作データを含む文字列バッファテキストが表示されています。
-
アンドロイドで文字列ビルダークラスを使用する方法は?
例に入る前に、文字列ビルダーとは何かを知っておく必要があります。 StringBuilderクラスは、可変文字列を作成するために使用されますが、スレッドセーフではないため、複数のスレッドが一度に文字列ビルダークラスにアクセスできます。この例は、Androidで文字列ビルダークラスを使用する方法について示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに
-
AndroidでButterKnifeを使用する方法は?
この例は、Androidでバターナイフを使用する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.