วิธีเพิ่ม TextView ลงใน LinearLayout ใน Android


129

ฉันกำลังพยายามเพิ่มTextViewsเลย์เอาต์ที่กำหนด xml ของฉันในโค้ด ฉันมี xml-sheet ซึ่งมีการViewsกำหนดจำนวนมาก แต่ฉันต้องเพิ่มมุมมองบางอย่างในโค้ดดังนั้นสร้างLinearLayoutใน xml-sheet:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:id="@+id/info"
android:layout_height="wrap_content" 
android:orientation="vertical">
</LinearLayout>

และในรูปแบบนี้ฉันต้องการเพิ่มTextView:

    View linearLayout =  findViewById(R.id.info);
    //LinearLayout layout = (LinearLayout) findViewById(R.id.info);


    TextView valueTV = new TextView(this);
    valueTV.setText("hallo hallo");
    valueTV.setId(5);
    valueTV.setLayoutParams(new LayoutParams(
            LayoutParams.FILL_PARENT,
            LayoutParams.WRAP_CONTENT));

    ((LinearLayout) linearLayout).addView(valueTV);

แต่ฉันได้รับข้อความแสดงข้อผิดพลาดต่อไปนี้เท่านั้น:

: java.lang.ClassCastException: android.widget.TextView

ฉันจะทำมันได้อย่างไร?

ขอบคุณสำหรับความช่วยเหลือ นกนางแอ่น


บรรทัดใดเป็นข้อยกเว้นสำหรับ? ต้องมาจาก LinearLayout คุณแน่ใจหรือไม่ว่าตัวแปร linearLayout เป็น LinearLayout ไม่ใช่ TextView นอกจากนี้คุณไม่ควรระบุรหัสเนื่องจากคุณไม่สามารถรับประกันได้ว่าจะไม่ซ้ำกัน
Robby Pond

1
คุณพูดถูกแล้ว linearLayout เป็น TextView แต่ทำไม? ฉันได้กำหนดไว้ในไฟล์ xml เป็น LinearLayout ...
Martin

1
ตรวจสอบให้แน่ใจว่าคุณใช้งาน xml ที่แสดงด้านบนจริงๆ กำลังsetContentView(R.layout.your_xml_layout);โหลด xml ที่ถูกต้องหรือไม่? คุณมีเลย์เอาต์ xml อื่น ๆ ที่คุณใช้android:id="@+id/info"ซึ่งเป็น TextView หรือไม่?
Rodja

ปัญหานี้ได้รับการแก้ไขหรือไม่ กรุณายอมรับเป็นคำตอบหรือโพสต์
Talha

คำตอบ:


106

ลองใช้

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.info);
...
linearLayout.addView(valueTV);

ตรวจสอบให้แน่ใจว่าพารามิเตอร์เค้าโครงที่คุณกำลังสร้างเป็น LinearLayout.LayoutParams ...


มีข้อยกเว้นอีกครั้งเนื่องจาก findViewById ส่งคืน TextView แต่ทำไม? ฉันดึงมันมาด้วยรหัส LinearLayout .... คุณหมายถึงอะไร: ตรวจสอบให้แน่ใจว่าพารามิเตอร์เค้าโครงที่คุณสร้างเป็น LinearLayout.LayoutParams ... ???
Martin

ทำไมสิ่งนั้นถึงเปลี่ยนไป? สิ่งที่ทำคือร่ายเร็วมากกว่าในภายหลังซึ่งควรมีผลเช่นเดียวกัน
yesennes

70

สวัสดีฉันตรวจสอบรหัสของคุณแล้วไม่มีข้อผิดพลาดร้ายแรงในรหัสของคุณ นี่คือรหัสที่สมบูรณ์:

main.xml: -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:id="@+id/info"
android:layout_height="wrap_content" 
android:orientation="vertical">
</LinearLayout>

นี่คือ Stackoverflow.java

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.LinearLayout;
import android.widget.TextView;

public class Stackoverflow extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        View linearLayout =  findViewById(R.id.info);
        //LinearLayout layout = (LinearLayout) findViewById(R.id.info);

        TextView valueTV = new TextView(this);
        valueTV.setText("hallo hallo");
        valueTV.setId(5);
        valueTV.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT));

        ((LinearLayout) linearLayout).addView(valueTV);
    }
}

คัดลอกรหัสนี้และเรียกใช้ มันปราศจากข้อผิดพลาดอย่างสมบูรณ์ ดูแล...


จะเป็นอย่างไรถ้าฉันต้องการมี TextView ต่อไปนี้:<TextView android:id="@+id/tvDInfo3" android:layout_width="0dp" android:layout_height="wrap_content" android:textStyle="bold" android:text="Release Date" android:gravity="center" android:padding="@dimen/dyk_text_pad" android:textColor="#000000" android:textSize="@dimen/info_text_size" android:layout_weight="1" />
Si8

1
+1 คำตอบนี้ดีกว่า @ Ben มากเนื่องจากมีตัวอย่างของ LayoutParams และคุณสมบัติที่เหลือของคุณสมบัติTextViewเริ่มต้นอย่างไร ควรทำเครื่องหมายเป็นคำตอบ
Subby

3
หมายเหตุ: ในปี 2015 const FILL_PARENT เลิกใช้งานแล้วคุณควรใช้ MATCH_PARENT แทน
Nikita Bosik

22

คุณสามารถเพิ่ม a TextViewลงในเลย์เอาต์เชิงเส้นของคุณโดยใช้โปรแกรมดังนี้:

LinearLayout linearLayout = (LinearLayout) findViewById(R.id.mylayout);
TextView txt1 = new TextView(MyClass.this);
linearLayout.setBackgroundColor(Color.TRANSPARENT);
linearLayout.addView(txt1);

MyClass นี้คืออะไร? ฉันยังใหม่กับการพัฒนา Android ฉันควรจะเปลี่ยนชื่อคลาสแฟรกเมนต์ของฉันเป็น "MyClass" หรือไม่
drusepth

1
MyClass นี่คือบริบทและมุมมองข้อความใช้ในบริบท
Mihai Bratulescu

2
เพียงเพื่อชี้แจง: ในกรณีส่วนใหญ่เป็นเช่นเดียวกับMyClass.this thisอย่างไรก็ตามคุณต้องระบุชื่อของคลาสหากคุณอยู่ในคลาสที่ซ้อนกันและต้องการเข้าถึงอินสแตนซ์ของคลาส "ภายนอก" ซึ่งเป็นเรื่องปกติมากเมื่อกำหนดการเรียกกลับสำหรับเหตุการณ์ใน Android
drigoangelo

ฉันเดาว่านักพัฒนา Android บางคนเคยชินกับการตั้งชื่อชั้นเรียนในที่ที่ต้องการและเริ่มวางไว้ทุกที่ นอกจากนี้ยังMyClass.thisเป็นตัวอย่างของMyClassและจะเป็นบริบทก็ต่อเมื่อ MyClass ใช้บริบท (เช่นขยายกิจกรรม)
drigoangelo

20
for(int j=0;j<30;j++) {
    LinearLayout childLayout = new LinearLayout(MainActivity.this);
    LinearLayout.LayoutParams linearParams = new LinearLayout.LayoutParams(
        LayoutParams.WRAP_CONTENT,
        LayoutParams.WRAP_CONTENT);
    childLayout.setLayoutParams(linearParams);

    TextView mType = new TextView(MainActivity.this);
    TextView mValue = new TextView(MainActivity.this);

    mType.setLayoutParams(new TableLayout.LayoutParams(
        LayoutParams.WRAP_CONTENT,
        LayoutParams.WRAP_CONTENT, 1f));
    mValue.setLayoutParams(new TableLayout.LayoutParams(
        LayoutParams.WRAP_CONTENT,
        LayoutParams.WRAP_CONTENT, 1f));

    mType.setTextSize(17);
    mType.setPadding(5, 3, 0, 3);
    mType.setTypeface(Typeface.DEFAULT_BOLD);
    mType.setGravity(Gravity.LEFT | Gravity.CENTER);

    mValue.setTextSize(16);
    mValue.setPadding(5, 3, 0, 3);
    mValue.setTypeface(null, Typeface.ITALIC);
    mValue.setGravity(Gravity.LEFT | Gravity.CENTER);

    mType.setText("111");
    mValue.setText("111");

    childLayout.addView(mValue, 0);
    childLayout.addView(mType, 0);

    linear.addView(childLayout);
}

10

คุณควรใช้สิ่งที่คล้ายกับสิ่งนี้สำหรับการเพิ่ม TextView ไปยัง LinearLayout แบบไดนามิก:

LinearLayout linearLayout = getActivity().findViewById(R.id.infoLayout);

TextView valueTV = new TextView(context);
valueTV.setText("hallo hallo");
valueTV.setId(Integer.parseInt("5"));
valueTV.setLayoutParams(new LinearLayout.LayoutParams(
       LinearLayout.LayoutParams.FILL_PARENT,
       LinearLayout.LayoutParams.WRAP_CONTENT));

linearLayout.addView(valueTV);

getActivity () ใช้สำหรับภายใน Fragments คุณสามารถใช้บริบทหรืออะไรก็ได้ที่คล้ายกันสำหรับแต่ละอินสแตนซ์ที่คุณอยู่ภายใน


3

คุณต้องเข้าถึงเลย์เอาต์ผ่านทางทรัพยากรเลย์เอาต์ไม่ใช่ทรัพยากร id ซึ่งไม่รับประกันว่าจะไม่ซ้ำกัน การอ้างอิงทรัพยากรควรมีลักษณะคล้ายกับ R.layout.my_cool_layout โดยที่เค้าโครง XML ด้านบนของคุณถูกเก็บไว้ใน res / layout / my_cool_layout.xml


0
LinearLayout.LayoutParams layoutParams ;
layoutParams= new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);

-2

นี่คือจุดที่เกิดข้อยกเว้น

((LinearLayout) linearLayout).addView(valueTV);

addViewวิธีการใช้พารามิเตอร์ชนิดViewไม่ใช่TextViewไม่ดังนั้นพิมพ์ออบเจ็กต์ valueTv ลงในออบเจ็กต์ View อย่างชัดเจน

ดังนั้นรหัสที่แก้ไขจะเป็น:

((LinearLayout) linearLayout).addView((TextView)valueTV);

คุณได้ทดสอบสิ่งนี้แล้วหรือยัง?
mrres1

ใช่ฉันมี. และทำงานได้อย่างสมบูรณ์แบบ! คุณลองหรือยัง?
user3509153
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.