“ ArrayAdapter ต้องการ ID ทรัพยากรจะเป็นปัญหา TextView” xml


181

ฉันได้รับข้อผิดพลาดเมื่อพยายามตั้งค่ามุมมองให้แสดงListViewไฟล์ที่ฉันต้องการแสดง (ไฟล์ข้อความ) ฉันค่อนข้างแน่ใจว่ามีบางอย่างเกี่ยวข้องกับ xml this.file = fileop.ReadFileAsList("Installed_packages.txt");ผมแค่อยากจะแสดงข้อมูลจาก รหัสของฉัน:

public class Main extends Activity {
    private TextView tv;
    private FileOperations fileop;
    private String[] file;

    /** Called when the activity is first created. */       
    @Override
    public void onCreate(Bundle savedInstanceState) {           
        super.onCreate(savedInstanceState); 
        this.fileop = new FileOperations(); 
        this.file = fileop.ReadFileAsList("Installed_packages.txt"); 
        setContentView(R.layout.main);
        tv = (TextView) findViewById(R.id.TextView01);
        ListView lv = new ListView(this);
        lv.setTextFilterEnabled(true); 
        lv.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, this.file)); 
        lv.setOnItemClickListener(new AdapterView.OnItemClickListener() { 

              public void onItemClick(AdapterView<?> parent, View view,     int position, long id) { 
                    // When clicked, show a toast with the TextView text 
                    Toast.makeText(getApplicationContext(), ((TextView) view).getText(), Toast.LENGTH_SHORT).show(); 
              } 
        });         
        setContentView(lv);
    }

}

list_item.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:padding="10dp"   
    android:textSize="16sp"   
    android:textColor="#000">

</LinearLayout>

main.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="1">
<ScrollView
    android:id="@+id/SCROLLER_ID"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:fillViewport="true">
        <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:padding="5sp"
        android:id="@+id/TextView01"
        android:text="@string/hello"/>
    </ScrollView>

</LinearLayout>

คำตอบ:


428

ArrayAdapter ต้อง ID ทรัพยากรที่จะเป็น TextView XMLยกเว้นหมายถึงคุณไม่ระบุว่าArrayAdapterคาดว่า เมื่อคุณใช้ Constructor นี้:

new ArrayAdapter<String>(this, R.layout.a_layout_file, this.file)

R.Layout.a_layout_fileต้องเป็น id ของไฟล์เลย์เอาต์ xml ที่มีเพียง a TextView( TextView ไม่สามารถห่อด้วยเลย์เอาต์อื่นเช่น a LinearLayout, RelativeLayoutฯลฯ !) ได้ดังนี้:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    // other attributes of the TextView
/>

หากคุณต้องการให้เค้าโครงแถวของลิสต์ของคุณมีความแตกต่างเล็ก ๆ น้อย ๆ แล้วTextViewวิดเจ็ตง่าย ๆใช้คอนสตรัคเตอร์นี้:

new ArrayAdapter<String>(this, R.layout.a_layout_file, 
   R.id.the_id_of_a_textview_from_the_layout, this.file)

โดยที่คุณให้การidจัดวางของที่สามารถมีมุมมองต่าง ๆ แต่ยังต้องมีTextViewด้วยและid(พารามิเตอร์ที่สาม) ที่คุณส่งผ่านไปยังของคุณArrayAdapterเพื่อให้สามารถรู้ว่าจะใส่ที่ไหนStringsในรูปแบบแถว


2
มีปัญหาเดียวกันเพราะ TextView ของฉันอยู่ใน LinearLayout ในไฟล์ xml
Valentin Despa

พยายามนี้ในแบบเลื่อนลงเติมข้อความอัตโนมัติฉันมี แต่มันไม่อนุญาตให้เลื่อนหรือไม่อนุญาตให้ฉันเลือกรายการใด ๆ จากรายการ
kabuto178

29
TextView สามารถห่อในเค้าโครงอื่น ๆ (ฉันเพิ่งทำ) ในการทำเช่นนั้นให้ใช้ตัวสร้างอื่นnew ArrayAdapter<String>(this, R.layout.a_layout_file, R.id.a_text_view_within_layout, this.file)ดู javadoc สำหรับandroid.widget.ArrayAdapter
Petr Gladkikh

6
คุณไม่ได้อ่านคำตอบของฉันเป็นอย่างดี: เมื่อคุณใช้ตัวสร้างนี้ : ... (TextView ไม่สามารถจะห่อโดยรูปแบบอื่นเช่น LinearLayout, RelativeLayout ฯลฯ ) มันสามารถห่อด้วยสิ่งที่คุณต้องการกับรุ่นตัวสร้างที่สองที่ยังใช้ id (เช่นฉันกล่าวถึงในส่วนที่สองของคำตอบของฉัน)
Luksprog

6
ขอบคุณมาก! ฉันใช้เวลาสามชั่วโมงทุบหัวกับกำแพง การอ้างอิงอื่น ๆ กล่าวว่าคุณสามารถมีได้เพียงหนึ่ง TextView แต่ฉันไม่พบข้อกำหนดที่สำคัญทั้งหมดของ "TextView ไม่สามารถถูกห่อด้วยเค้าโครงอื่นเช่น LinearLayout" ว้าว snip snip และมันใช้งานได้เหมือนมีเสน่ห์ ขอบคุณอีกครั้ง!
Scott Biggs

31

Soution อยู่ที่นี่

listitem.xml

<?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:orientation="vertical" >

     <TextView
         android:id="@+id/textview"
         android:layout_width="match_parent"
         android:layout_height="match_parent" >
     </TextView>
</LinearLayout>

รหัส Java:

 String[] countryArray = {"India", "Pakistan", "USA", "UK"};
 ArrayAdapter adapter = new ArrayAdapter<String>(this, R.layout.listitem,R.id.textview, countryArray);
 ListView listView = (ListView) findViewById(R.id.listview);
 listView.setAdapter(adapter);

1
ฉันรู้ว่าสิ่งนี้ดูเหมือนจะไม่เป็นเรื่องง่าย แต่การดูเอกสารประกอบของตัวสร้าง ArrayAdapter ช่วยฉันด้วยเช่นกัน ลิงก์
luckyging3r

1

หากคุณได้รับข้อความนั้นเมื่อคุณกำลังขยาย ArrayAdapter คุณจะได้รับข้อผิดพลาดนั้นเนื่องจากคุณไม่ได้ระบุรหัสทรัพยากรที่ถูกต้องเพื่อแสดงรายการ เรียก super class ใน Constructor และส่งผ่าน ID ทรัพยากรของ TextView:

    //Pass in the resource id:  R.id.text_view
    SpinnerAdapter spinnerAddToListAdapter = new SpinnerAdapter(MyActivity.this,
            R.id.text_view,
            new ArrayList<>());

อะแดปเตอร์:

public class SpinnerAdapter extends ArrayAdapter<MyEntity> {

    private Context context;
    private List<MyEntity> values;

    public SpinnerAdapter(Context context, int textViewResourceId,
                          List<MyEntity> values) {

        //Pass in the resource id:  R.id.text_view
        super(context, textViewResourceId, values);

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