0

linearLayoutの複数のインスタンスを作成しようとしています。レイアウトファイルを作成しました(以下)。独自のレイアウトファイルと別のファイル(main_activity.xml)に配置し、スクロールビュー内に動的な数の線形レイアウトインスタンスを追加したいと思います。私は、Javaコードで同じlinearlayoutをプログラムで作成し、それをループできることを知っていますが、(2つの主な理由で)むしろしたくありません。

  1. 私のJavaクラスで大規模なレイアウトを作成すると、コードが乱雑に見え始めます:)。
  2. レイアウトをXMLにし、ロジックをJavaにするというパラダイムが好きです。

ロジックをJavaで保持してから、線形レイアウトの複数の「インスタンス」を動的に作成/インスタンス化することは可能ですか。私の推測では、簡単な解決策がありますが、私の初心者のステータスはそれを解決する私の能力を曇らせています。何らかの理由で、私のJavaコードはLinearLayoutを見つけることができますが、最初のTextView(@ + id / submitBy)を見つけることができません。

どうもありがとう、クレイグ

Javaロジック

  ScrollView sv = (ScrollView) findViewById(R.id.existingCommentsScrollView);
    //DEBUGGING LOOP- REMOVE ME
    for(int i=0;i<30;i++){
        LinearLayout ll = (LinearLayout)findViewById(R.id.existingCommentLinearLayout);

        TextView submittedByTextView = (TextView) findViewById(R.id.submittedBy);
        submittedByTextView.setText("Craig " +i);

        TextView submittedDate = (TextView) findViewById(R.id.dateField);
        submittedDate.setText("SubmittedDate " +i);

        RatingBar showRating = (RatingBar) findViewById(R.id.userShowRating);
        showRating.setRating(3);

        RatingBar soundRating = (RatingBar) findViewById(R.id.userSoundRating);
        soundRating.setRating(1);

        EditText commentText = (EditText) findViewById(R.id.userCommentEditText);
        commentText.setText("THIS IS WHERE MY TEXT GOES FOR "+i+" I could add more too");

        sv.addView(ll);
    }
    sv.refreshDrawableState();

レイアウト:

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/linear_layout_border"
android:orientation="vertical"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000000"
    android:paddingBottom="4dp"
    android:paddingLeft="4dp"
    android:paddingRight="4dp"
    android:paddingTop="4dp"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

    <TextView
        android:id="@+id/submittedBy"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:gravity="center_horizontal"
        android:inputType="none"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="10dp"
        android:paddingTop="1dp"
        android:text="NameGoesHere"
        android:textColor="#E6E6E6"
        android:textSize="8sp" />

    <TextView
        android:id="@+id/dateField"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/submittedBy"
        android:ems="10"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="10dp"
        android:paddingTop="1dp"
        android:text="DateGoesHere"
        android:textColor="#E6E6E6"
        android:textSize="8sp" />
</RelativeLayout>

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000000"
    android:paddingBottom="4dp"
    android:paddingLeft="4dp"
    android:paddingRight="4dp"
    android:paddingTop="4dp"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

    <TextView
        android:id="@+id/userShowRatingTextView"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:gravity="center_horizontal"
        android:inputType="none"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="10dp"
        android:paddingTop="1dp"
        android:text="Show Rating"
        android:textColor="#E6E6E6"
        android:textSize="8sp" />

    <RatingBar
        android:id="@+id/userShowRating"
        style="?android:attr/ratingBarStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/userShowRatingTextView" />
</RelativeLayout>

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000000"
    android:paddingBottom="4dp"
    android:paddingLeft="4dp"
    android:paddingRight="4dp"
    android:paddingTop="4dp"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

    <TextView
        android:id="@+id/userSoundRatingTextView"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_toRightOf="@id/userShowRating"
        android:gravity="center_horizontal"
        android:inputType="none"
        android:paddingBottom="1dp"
        android:paddingLeft="4dp"
        android:paddingRight="10dp"
        android:paddingTop="1dp"
        android:text="Sound Rating"
        android:textColor="#E6E6E6"
        android:textSize="8sp" />

    <RatingBar
        android:id="@+id/userSoundRating"
        style="?android:attr/ratingBarStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/userSoundRatingTextView" />
</RelativeLayout>

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

    <EditText
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#000000"
        android:inputType="none"
        android:paddingBottom="4dp"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:paddingTop="4dp"
        android:text="Comment Goes Here"
        android:textColor="#E6E6E6"
        android:textSize="12sp"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

        <requestFocus />
    </EditText>
</RelativeLayout>

4

1 に答える 1

0

例外はありませんか?ループの最後の行を参照しています。ここで、各反復でにを追加LinearLayoutします。おそらく、レイアウトファイルを膨らませてから、以下ScrollViewのようなものに追加しようとしています。ScrollView

ScrollView sv = (ScrollView) findViewById(R.id.existingCommentsScrollView);
// I assume this LinearLayout is the only child of the ScrollView above
LinearLayout ll = (LinearLayout)findViewById(R.id.existingCommentLinearLayout);
for(int i=0;i<30;i++){        
    // R.layout.the_layout_file is your layout from the question
    View inflatedView = getLayoutInflater().inflate(R.layout.the_layout_file, ll, false);
    TextView submittedByTextView = (TextView) inflatedView.findViewById(R.id.submittedBy);
    submittedByTextView.setText("Craig " +i);

    TextView submittedDate = (TextView) inflatedView.findViewById(R.id.dateField);
    submittedDate.setText("SubmittedDate " +i);

    RatingBar showRating = (RatingBar) inflatedView.findViewById(R.id.userShowRating);
    showRating.setRating(3);

    RatingBar soundRating = (RatingBar) inflatedView.findViewById(R.id.userSoundRating);
    soundRating.setRating(1);

    EditText commentText = (EditText) inflatedView.findViewById(R.id.userCommentEditText);
    commentText.setText("THIS IS WHERE MY TEXT GOES FOR "+i+" I could add more too");

    ll.addView(inflatedView);
}

また、多くのビューを追加していることに注意してください。これは、スムーズなインターフェイスのために避けるべきものです。

于 2012-11-23T19:01:13.657 に答える