我有一個複雜的xml佈局,它具有列表視圖..列表視圖中的行包含幾個均勻間隔的文本字段。我使用textview來存儲文本,然後最後添加所有的項目行...其工作完全正常。 但現在我有我不確定的情況下,我可能從web服務獲得多少文本字段。因此我需要在運行時動態創建textview,填充它們,然後插入到列表中。 是否有在運行時聲明,添加和填充新的textview字段? 還是有無法實現兩個領域之間的間距?第一次調用第二個電話的在運行時構建佈局android
__________________________
|_____|_____|_____|______|
結果
結果
________________________________
|_____|_____|_____|______|______|
我試圖實現了低於(肯尼)提供的解決方案,但由於某種原因,我無法觀點加入到下面是我的代碼
public class HeaderAdapter extends ArrayAdapter<Header> {
final Header[] listSymbols;
private TextView textView;
private LinearLayout row;
public HeaderAdapter(Context context, int symResourceID,
Header[] objects) {
super(context, symResourceID, objects);
listSymbols = objects;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View row = inflater.inflate(R.layout.header_view, parent, false);
Header headerRec = listSymbols[position];
for(int i = 0 ; i < listSymbols.length;i++){
textView = new TextView(getContext());
textView.setLayoutParams(new LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, //Width of the view
ViewGroup.LayoutParams.WRAP_CONTENT));//Height of the view
textView.setId(i);
row.add??
}
}
調用這個主要活動
setContentView(R.layout.main);
headerList.add(new Header("Symbol","Quantity","Price","Price Yesterday","52 Week High","52 Week Low","Change","Days Gain","Days Gain %","Returns"));
Header[] tmpHeaderList = headerList.toArray(new Header[headerList.size()]);
ArrayAdapter<Header> headerAdapter = new HeaderAdapter(this,R.layout.twoway_header_view,tmpHeaderList);
headerListView.setAdapter(headerAdapter);
XML佈局file..the主文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<HorizontalScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:scrollbars="none"
android:id="@+id/headerHv">
<ListView android:id="@+id/header_listView1"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="@color/white" android:cacheColorHint="#00000000"
android:smoothScrollbar="true" android:scrollbars="none" />
</HorizontalScrollView>
</LinearLayout>
在該行的模板被定義
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView android:id="@+id/headerList" android:layout_width="80dp"
android:layout_height="wrap_content" android:textColor="#000000"
android:typeface="sans" android:textStyle="normal" />
</LinearLayout>
@Kenny ...謝謝...但在這裏你使用BarButton,有沒有像這樣的textview? –
BarButton是我製作的自定義按鈕,所有按鈕都擴展了View類,textViews也擴展了視圖類。所以你可以做同樣的事情,但添加一個textView而不是一個按鈕。 – Kenny
我已經擴展了我的答案以向您展示,請將問題標記爲已回答,將其從未答覆的列表中刪除。 – Kenny