簡體   English   中英

如何以編程方式添加TextViews並在布局中對齊它們

[英]How to programmatically add TextViews and align them in a Layout

我想創建一些TextViews(和Buttons),然后將它們放在ConstraintLayout內的RelativeLayout上(也可以是LinearLayout或其他可以使用的東西)...我的目標是為每個按鈕在它的左邊放置一個textview在布局中居中放置該居中位置。 (這就是我要使用Layoutparams做的事情)。 但是,為什么我會收到NullPointer異常?

XML布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/welcomeiqlinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.william.httprequest.Welcome_InitialQuestions">

<TextView
    android:id="@+id/textView14"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="16dp"
    android:text="@string/wilkommen"
    android:textAlignment="center"
    android:textSize="35sp"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@+id/textView28"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="24dp"
    android:text="@string/wilkommen_t1"
    android:textAlignment="center"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView14" />

<Button
    android:id="@+id/startinitialbtn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:backgroundTint="@color/aqua"
    android:elevation="0dp"
    android:text="@string/start_btn"
    android:textColor="@color/white"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent" />

<RelativeLayout
    android:id="@+id/onetimerelative"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toTopOf="@+id/startinitialbtn"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView28"
    app:layout_constraintVertical_bias="1.0">

</RelativeLayout>

</android.support.constraint.ConstraintLayout>

Java代碼:

@Override
        public void onResponse(String response) {

            //Log.i(TAG, "MY_PROFILE_DATA: "+ response);

            studiesList = new LinkedList<String>();

            try {
                JSONObject jsonObject1 = new JSONObject(response);
                JSONArray jArray = jsonObject1.getJSONArray("data");

                if (jArray != null) {
                    for (int i = 0; i < jArray.length(); i++) {
                        studiesList.add(jArray.getString(i));
                    }
                }

            } catch (JSONException e) {
                e.printStackTrace();
            }

            Iterator<String> itr=studiesList.iterator();
            //Log.i(TAG,"Questionnaire_DATA: "+ studiesList.toString());
            int i = 1;
            while(itr.hasNext())
            {
                if(i==1) {

                    Log.i(TAG, "Questionnaire_DATA: " + itr.next());

                    //add textViews
                    TextView textView = new 
                    TextView(getApplicationContext());

                    textView.setText("Fragebogen " + i);


                    //add buttons
                    Button button = new Button(getApplicationContext());
                    button.setText("Offen");
                    button.setId(i);

                    RelativeLayout.LayoutParams lp = 
                   (RelativeLayout.LayoutParams) 
                    otrelativeLayout.getLayoutParams();
                    lp.addRule(RelativeLayout.ALIGN_PARENT_LEFT, 0);
                    lp.addRule(RelativeLayout.RIGHT_OF, button.getId());
                    lp.addRule(RelativeLayout.ALIGN_BASELINE, button.getId());

                    textView.setLayoutParams(lp);

                    otrelativeLayout.addView(button);
                    otrelativeLayout.addView(textView);
                    i++;
                } else {





                }
            }

錯誤:

FATAL EXCEPTION: main

Process: com.example.william.httprequest, PID: 26073

java.lang.ClassCastException: 
android.support.constraint.ConstraintLayout$LayoutParams cannot be cast to 
android.widget.RelativeLayout$LayoutParams

我真的很感謝您的幫助:)

用於View.getLayoutParams()的Android文檔指出,返回的布局參數已提供給此View的父級 這就解釋了ClassCastException :在RelativeLayout上調用getLayoutParams()時,您正在獲取布局參數,該參數描述了應如何在其父ConstraintLayout進行布局,因此是ConstraintLayout.LayoutParams的實例。

你必須實例化一個新的RelativeLayout.LayoutParams每個TextViewButton你想添加為您的孩子RelativeLayout ,它的配置參數,設置它View.setLayoutParams(ViewGroupe.LayoutParams)然后將新創建的視圖添加到其RelativeLayout父級。

暫無
暫無

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

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