簡體   English   中英

如何在Android中動態地在線性布局中添加評級欄?

[英]how to add rating bar in Linear Layout Dynamically in Android?

我嘗試在某些文本字段之后動態地在“線性布局”中添加評級欄。 但是我在行= lL.addView(rating);上得到了NullPointerException; 有人可以幫我嗎,謝謝。

這是我的xml文件。

<ScrollView
        android:id="@+id/scrollField"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/btnDELETE"
        android:layout_below="@+id/textTitle"
        android:layout_marginTop="10dp" >

        <LinearLayout
            android:id="@+id/linearLayoutRatingDetails"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/tv_EmployeeName"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginTop="10dp"
                android:text="dfkyjrtl"
                android:textColor="#2E1F1F" />

            <TextView
                android:id="@+id/tv_TaskName"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginTop="6dp"
                android:text="dfkyjrtl"
                android:textColor="#2E1F1F" />

            <TextView
                android:id="@+id/tv_TaskDate"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginTop="6dp"
                android:text="dfkyjrtl"
                android:textColor="#2E1F1F" />

            <TextView
                android:id="@+id/tv_TaskRate"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginTop="6dp"
                android:text="dfkyjrtl"
                android:textColor="#2E1F1F" />
        </LinearLayout>
    </ScrollView>




Hare is my Activity code.

public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.task_details);

        Intent intent = getIntent();
        str_IntentName = intent.getExtras().getString("EMP_NAME");
        str_IntentTaskName = intent.getExtras().getString("TASK_NAME");
        str_IntentDate = intent.getExtras().getString("TASK_DATE");
        str_IntentRate = intent.getExtras().getString("TASK_RATE");

        numStar = Integer.valueOf(str_IntentRate);
        Log.e("integer numStar "," = " + numStar);

        lL = (LinearLayout)findViewById(R.id.linearLayoutRatingDetails);


        tvEmpName.setText(str_IntentName);
        tvTaskName.setText(str_IntentTaskName);
        tvDate.setText(str_IntentDate);
        tvRate.setText(str_IntentRate);
        Create_RatingBar();



    }

    private void Create_RatingBar() 
    {
        stepSize = (float) 0.5;
        rating = new RatingBar(Task_Details.this);
        rating.setNumStars(numStar);
        rating.setStepSize(stepSize);

        LinearLayout.LayoutParams param = new LinearLayout.LayoutParams
                (LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
        param.topMargin = 500;
        rating.setLayoutParams(param);
        lL.addView(rating);
    }

為了將其從xml添加到LinearLayout中,您需要在代碼中獲得對此LinearLayout的“引用”。 為此,您需要在xml中為其添加廣告ID ,並在代碼中使用此ID獲取元素。

public void onCreate(Bundle savedInstanceState){
    //Some other code for other views
    ViewGroup container = (ViewGroup) findViewById(R.id.linearLayoutRatingDetails);
    setupRatingBar(container)
}

private void setupRatingBar(ViewGroup ratingBarContainer){
    RatingBar ratingBar = new RatingBar(Task_Details.this);
    //All methods you need to initialize the rating bar
    //including setNumStars(), setStepSize() and layout params

    ratingBarContainer.addView(ratingBar);
}

還可以使用更多解釋性名稱。 “ lL”將來會令您頭疼。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM