2013-12-18 98 views
5

我有一個具有以下結構的abc.xml。Android:在嵌套佈局中動態添加視圖

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
<RelativeView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 
    <LinearLayout 
    android:id="@+id/linear" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    > 
    </LinearLayout> 
</RelativeLayout> 
</ScrollView> 

我想動態添加textviews線性佈局。以下是我的代碼。我沒有得到任何錯誤,但我沒有得到預期的結果。

LayoutInflater Inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
     View view = Inflater.inflate(R.layout.abc, null); 

LinearLayout layout = (LinearLayout) view.findViewById(R.id.linear); 

     TextView Tag = new TextView(getActivity()); 
     Tag.setText("textString"); 
     Tag.setBackgroundResource(R.color.bg_color); 
     Tag.setTextAppearance(getActivity(), R.style.SmallFont); 
     layout.addView(Tag); 
+0

爲什麼你使用RelativeLayout? –

+0

我在相對佈局中也有其他視圖,就像文字瀏覽和按鈕瀏覽 – Shah

回答

6

你的XML應該是

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical"> 
    <LinearLayout 
    android:id="@+id/linear" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    > 
    </LinearLayout> 
</LinearLayout> 
</ScrollView> 

和Java代碼中添加文本的看法是

LinearLayout layout = (LinearLayout) view.findViewById(R.id.linear); 
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
    LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT); 
TextView Tag = new TextView(getActivity()); 
tag.setLayoutParams(params); 
Tag.setText("textString"); 
Tag.setBackgroundResource(R.color.bg_color); 
Tag.setTextAppearance(getActivity(), R.style.SmallFont); 
layout.addView(Tag); 
0

我不知道你已經找到了答案,但我剛遇到這個問題,我找到了1種方法。 我想你需要如下調整一個位的佈局:

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <RelativeView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" > 

      <LinearLayout 
       android:id="@+id/linear" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" > 
      </LinearLayout> 
     </LinearLayout> 

    </RelativeView> 

</ScrollView> 
0

你必須給,

android:layout_orientation="either horizontal or vertical" 

的線性佈局ID爲:線性。