1

我正在编写一个需要用户在表单中输入一些详细信息的应用程序。表单最初连续有 3 个 EditText 视图。当用户在最后一个 editText 中输入一些数据时,onFocusChangeListener 应该启动一个新行。

这就是我想做的。如何在运行时在单个 listView 行中创建 3 个 editText 视图?

4

1 回答 1

0

要连续创建具有多个视图的 listView,您需要自定义适配器,因此它可以采用源 XML 中的行的形式(您应该创建)并将其放入您的 listView,这是一个基于基础适配器:

这是您的 Xml 源,其中包含您的行的形式:

espaceclientuploadsource.xml :

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:addStatesFromChildren="true" >

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:addStatesFromChildren="true" >

    <ImageView
        android:id="@+id/Uplodimage"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="15dp"
        android:src="@drawable/bingo" />

    <TextView
        android:id="@+id/UploadedProductName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="24dp"
        android:layout_toRightOf="@+id/Uplodimage"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/UplodedProductPrice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/UploadedProductName"
        android:layout_below="@+id/UploadedProductName"
        android:layout_marginTop="16dp"
        android:text="Small Text"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <ImageView
        android:id="@+id/UploadedStatus"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_above="@+id/UplodedProductPrice"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/UploadedProductName"
        android:layout_marginRight="27dp"
        android:src="@drawable/bingo" />

    <ImageView
        android:id="@+id/ImageViewDelete"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_alignBottom="@+id/UplodedProductPrice"
        android:layout_alignLeft="@+id/UploadedStatus"
        android:clickable="true"
        android:src="@drawable/bingo" />

</RelativeLayout>

然后您需要创建一个包含您的 ListView 的 XML 文件:

espaceclient上传:

<EditText
    android:id="@+id/login"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" >

    <requestFocus />
</EditText>

<EditText
    android:id="@+id/password"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10"
    android:inputType="textPassword" />

<Button
    android:id="@+id/submit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="submit"
    android:text="Button" />
</LinearLayout>

接下来是你的适配器,它的作用是使用你的sourceXML作为你的行格式,

上传适配器:

public class UploadedAdapter extends BaseAdapter
{   
List<Article> lesArticles;
DataSource produitSource;
LayoutInflater inflater;
String path= Environment.getExternalStorageDirectory().toString()+File.separator+"Bingo";


public UploadedAdapter(Context context, List<Article> lesArticles) 
{
    inflater=LayoutInflater.from(context);
    this.lesArticles = lesArticles;

}


@Override
public int getCount() 
{
    return lesArticles.size();
}

@Override
public Object getItem(int position) 
{
    return lesArticles.get(position);
}

@Override
public long getItemId(int position) 
{
    return position;
}

private class ViewHolder 
{
    TextView nomduProduit;
    TextView prixDuProduit;
    ImageView status;
    ImageView imageDuProduit;
    ImageView delete;
}
@Override

public View getView(final int position, View convertView, ViewGroup parent) {

    ViewHolder holder;
    if (convertView==null)
    {
        holder=new ViewHolder();
        convertView = inflater.inflate(R.layout.espaceclientuploadsource, null);
        holder.nomduProduit = (TextView)convertView.findViewById(R.id.UploadedProductName);
        holder.prixDuProduit = (TextView)convertView.findViewById(R.id.UplodedProductPrice);
        holder.imageDuProduit = (ImageView)convertView.findViewById(R.id.Uplodimage);
        holder.status = (ImageView)convertView.findViewById(R.id.UploadedStatus);
        holder.delete=(ImageView)convertView.findViewById(R.id.ImageViewDelete);
        convertView.setTag(holder);
    }

    else
    {
        holder = (ViewHolder) convertView.getTag();
    }
    Drawable drawableImage = new BitmapDrawable(bitmapImage);
    holder.imageDuProduit.setImageDrawable(drawableImage);
    holder.nomduProduit.setText(lesArticles.get(position).getNomArticle());
    holder.prixDuProduit.setText(lesArticles.get(position).getPrix());
    holder.delete.setImageResource(R.drawable.delete);
    return convertView;
}
}       

如您所见,您的适配器扩展了作为抽象类的 baseAdapter,因此您需要重写它的方法。

最后,您的活动将显示您的 listView:

public class EspaceClientUplodedProducts extends Activity{

List<Article> lesArticle= new ArrayList<Article>();
ListView lvListe;

UploadedAdapter adapter;

@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.espaceclientuploads);

    lvListe= (ListView)findViewById(R.id.UploadListView);
    adapter = new UploadedAdapter(this, lesArticle);
    lvListe.setAdapter(adapter);
    lvListe.setOnItemClickListener(this);
}
}
于 2013-08-02T18:13:08.063 回答