1

クエリを実行してデータを取得する必要があります。したがって、データを動的に追加できる TextView が必要です。TextView でデータを動的に取得して割り当てるコードを次に示します。

        do{
            int count = cursor.getCount();
            final TextView[] myTextViews = new TextView[count]; 

            for(int counter = 0; counter<count ; counter++){
                getName = cursor.getString(cursor.getColumnIndexOrThrow("NAME"));
                affiliation_ID = cursor.getString(cursor.getColumnIndexOrThrow("NUMBER"));
                final TextView rowTextView = new TextView(this);
                rowTextView.setText(Html.fromHtml(getName+"<sup><small>"+affiliation_ID+"</small></sup><br/>"));
                rel.addView(rowTextView);
                }          
        } while(cursor.moveToNext());

このような結果が得られます。

ここに画像の説明を入力

ご覧のとおり、ある単語が別の単語と重なっています。ここに私のxmlファイルがあります

<?xml version="1.0" encoding="utf-8"?>
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/scrollView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fillViewport="true" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/ConTopic"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <TextView
            android:id="@+id/ConTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/ConTopic"
            android:layout_marginTop="22dp"
            android:text="Medium Text"
            android:textAppearance="?android:attr/textAppearanceMedium" />

       <RelativeLayout
            android:id="@+id/rel"
            android:layout_width="fill_parent"
            android:layout_height="match_parent" >
       </RelativeLayout>

    </RelativeLayout>

</ScrollView>

だから、私は知る必要があるか、私の質問は

1)下にそれらのテキストを表示したい場合ConTitle。私は何をすべきだと思いますか?2) ケース 1 の場合、TextView の目的の位置と Text のサイズを動的に追加するにはどうすればよいですか。3)動的に追加されたTextViewの下に別の単純なTexview(通常のテキスト)を追加したい場合はどうすればよいですか?

そして最後に、これは私が達成したいことです

ここに画像の説明を入力

4

1 に答える 1

1

追加メソッドを使用できます。単一のテキストビューを用意し、テキストビューをレイアウトに追加します。新しいデータを追加\nし、新しい行を追加します。

また、なぜ for ループと while があるのですか。whileループで十分です

 TextView tv = new TextView(ActivityName.this);
 rel.addView(tv);   
    if (cursor !=null && cursor.moveToFirst()) {
        do {
            getName = cursor.getString(cursor.getColumnIndexOrThrow("NAME"));
            affiliation_ID = cursor.getString(cursor.getColumnIndexOrThrow("NUMBER"));
            tv.append(Html.fromHtml(getName+"<sup><small>"+affiliation_ID+"</small></sup><br/>"));
            tv.append("\n"); 

        } while (cursor.moveToNext());
    }
于 2013-09-04T18:15:35.287 に答える