2013-08-01 94 views
5

我剛剛將Android SDK更新至版本18,並修改了我正在使用它而不是版本17的項目。事實證明,我的ListView現在看起來很不一樣。但是,只需在清單文件中將targetSdkVersion從18更改爲17即可。ListView項目佈局在targetSdkVersion =「17」和targetSdkVersion =「18」之間不相同

我設法在Eclipse中創建一個新的Android項目和改變的主要活動最基本的ListActivity執行可能重現該問題:

public class MainActivity extends ListActivity { 

    private static final String[] listItems = new String[] { "list item 1", "list item 2"}; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, R.id.text, listItems)); 
    } 

} 

的list_item.xml文件包含以下內容:

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

    <TextView 
     android:id="@+id/text" 
     android:layout_width="match_parent" 
     android:layout_height="100dip" 
     android:background="#ff0000" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignBottom="@id/text" 
     android:layout_alignTop="@id/text" 
     android:background="#88ffffff" 
     android:orientation="horizontal" > 

     <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:background="#8c0000ff" 
      android:text="@string/button1" /> 

     <Button 
      android:id="@+id/button2" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_marginLeft="20dip" 
      android:background="#8c00ff00" 
      android:text="@string/button2" /> 
    </LinearLayout> 

</RelativeLayout> 

將LinearLayout放在TextView上是有意的。我想使用LinearLayout作爲覆蓋層,並在必要時顯示/隱藏它。

現在,當我將AndroidManifest.xml文件中的targetSdkVersion設置爲17時,一切都按預期工作,這意味着按鈕與LinearLayout的高度相匹配。但是,當我將版本切換到18時,它們的行爲就像使用「wrap_content」一樣。爲什麼我得到這種奇怪的行爲,我如何修復它在SDK 17中的工作?

+1

我有與視圖高度相同的問題。我不知道如何解決這個問題。我會留在api 17級 – passsy

回答

0

這對我來說似乎很奇怪。就我所見,您的LinearLayout不需要layout_alignBottom/layout_alignTop屬性集,但是移除這些行並且LinearLayout本身也顯示錯誤。 我能得到什麼,我相信唯一的辦法就是你想要的結果在我的測試是從你的LinearLayout刪除alignTop/alignBottom(因爲這些似乎是不必要的),並添加一行:

android:minHeight="100dip" 

希望這有助於。

相關問題