私は大丈夫スクロール背景は
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/tile"
android:tileMode="repeat" />
作品として定義タイルの背景とのTextViewを持っているが、問題は、私はより多くのテキストを読むために下にスクロールすると、背景が同じにとどまるということです私はそれをテキストでスクロールしたいのですが。 アイデアありがとうございます。
テキストビューは以下のように定義されるクラスLinedEditText離れカスタムフォントを設定することから、何もしない
<view xmlns:android="http://schemas.android.com/apk/res/android"
class="com.example.android.notepad.NoteEditor$LinedEditText"
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/app_bg_r"
android:textColor="#666666"
android:padding="5dp"
android:scrollbars="vertical"
android:fadingEdge="vertical"
android:gravity="top"
android:textSize="22sp"
android:lineSpacingExtra ="7sp"
android:capitalize="sentences" />
。テキストビューは
setContentView(R.layout.note_editor);
TextView xmlを投稿することはできますか? (もしあなたがそのように作成しているのであれば)コード – cottonBallPaws
確かに、私はそれを質問に入れました。 Thx –