android – 如何在sdk 17和18之间改变列表项布局行为的变化?

android – 如何在sdk 17和18之间改变列表项布局行为的变化?,第1张

概述我创建了一个简单的应用程序来说明在包含在SDK 17和SDK 18之间的RelativeLayout中时LinearLayout的行为方式的变化.首先,截图: 当targetSdkVersion为“17”时: 当targetSdkVersion为“18”时: 此活动的布局是: <LinearLayout xmlns:android="http://schemas.android.com/apk/r 我创建了一个简单的应用程序来说明在包含在SDK 17和SDK 18之间的relativeLayout中时linearLayout的行为方式的变化.首先,截图:

当targetSdkVersion为“17”时:

当targetSdkVersion为“18”时:

此活动的布局是:

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:background="#00ffff"    androID:orIEntation="vertical" >    <include layout="@layout/test_List_item"/>    <ListVIEw        androID:ID="@+ID/ListvIEw"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent"        androID:overScrollMode="never"        androID:scrollingCache="false" >    </ListVIEw></linearLayout>

text_List_item.xml是:

<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content"    androID:background="#ff0000" >    <TextVIEw        androID:ID="@+ID/text"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_centerInParent="true"        androID:background="#ffff00"        androID:padding="10dp"        androID:text="foobar"        androID:textcolor="#000000" />    <linearLayout        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"        androID:layout_alignBottom="@ID/text"        androID:layout_aligntop="@ID/text"        androID:background="#00ff00"        androID:orIEntation="horizontal"        androID:weightSum="1.0" >        <VIEw            androID:layout_wIDth="0dp"            androID:layout_height="match_parent"            androID:layout_weight="0.5"            androID:background="#0000ff" />    </linearLayout></relativeLayout>

活动的onCreate()如下所示:

protected voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentVIEw(R.layout.activity_test);    findVIEwByID(R.ID.text).bringToFront();    final ListVIEw mListVIEw = (ListVIEw) findVIEwByID(R.ID.ListvIEw);    mListVIEw.setAdapter(new TestAdapter());}

而TestAdapter看起来像这样:

public class TestAdapter extends BaseAdapter {    private static final int COUNT = 3;    @OverrIDe    public int getCount() {        return COUNT;    }    @OverrIDe    public Object getItem(int position) {        return null;    }    @OverrIDe    public long getItemID(int position) {        return position;    }    @OverrIDe    public boolean areAllitemsEnabled() {        return true;    }    @OverrIDe    public boolean isEnabled(int position) {        return false;    }    @OverrIDe    public VIEw getVIEw(int position,VIEw convertVIEw,VIEwGroup parent) {        final VIEw vIEw = LayoutInflater.from(parent.getContext()).inflate(R.layout.test_List_item,null);        vIEw.findVIEwByID(R.ID.text).bringToFront();        return vIEw;    }

当target = 17时,linearLayout的子视图在ListVIEw内部和ListVIEw外部时,可以正确调整为可用宽度的50%.当target = 18时,当用作列表项的布局时,它不会调整大小.在这种情况下,它的宽度保持在“0dp”并且永远不会调整大小.

理想情况下,我想针对SDK 19.但是,为了做到这一点,我要以某种方式适应这种行为的变化.有关如何实现这一点的任何想法?

顺便说一句,有些原因导致布局如此复杂和“怪异”;我意识到有更直接的方法来实现这种特殊的视觉效果.

编辑:

为了更多地了解我为什么使用这种病态布局:它用于“仪表”.使用ScaleAnimation拉伸或缩小linearLayout内的视图,使其占据总可用宽度的所需百分比.让它变得棘手的是我需要在仪表顶部覆盖文本,我希望仪表的高度由文本决定.

因此,外部relativeLayout应该“与其父级一样宽”,但只“与它包含的TextVIEw一样高”. relativeLayout中的linearLayout应该与其父级一样宽和高. linearLayout中的VIEw应该与包含它的linearLayout一样高,但只有一半宽.

当布局未用作ListVIEw项目的内容时,这正是我在针对SDK 17和/或SDK 18时获得的行为.

编辑

发布在开发人员组:

https://groups.google.com/forum/#!msg/android-developers/KuoY5Tklyms/TbNq6ndD_PwJ

解决方法 看起来因为它只是一个视图而且不需要渲染任何东西,为了一些优化,我们跳过了测量方法.将视图更改为TextVIEw并设置一些文本,您将看到它确实按预期显示.我确实理解linearLayout以不同方式呈现视图(不确定这是否正确或ListVIEw是否正确)
<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:background="#ff0000" ><TextVIEw    androID:ID="@+ID/text"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_centerInParent="true"    androID:background="#ffff00"    androID:padding="10dp"    androID:text="foobar"    androID:textcolor="#000000" /><linearLayout    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:layout_alignBottom="@ID/text"    androID:layout_aligntop="@ID/text"    androID:background="#00ff00"    androID:orIEntation="horizontal"    androID:weightSum="1.0" >    <TextVIEw        androID:ID="@+ID/testVIEw"        androID:layout_wIDth="0dp"        androID:layout_height="fill_parent"        androID:layout_weight="0.5"        androID:background="#0000ff"        androID:singleline="false" /></linearLayout>
@OverrIDe    public VIEw getVIEw(int position,VIEwGroup parent) {        final VIEw vIEw = LayoutInflater.from(parent.getContext()).inflate(R.layout.text_List_item,null);        vIEw.findVIEwByID(R.ID.text).bringToFront();        TextVIEw testVIEw = (TextVIEw)vIEw.findVIEwByID(R.ID.testVIEw);        testVIEw.setText("some test text for vIEwNo:"+String.valueOf(position));        return vIEw;    }
总结

以上是内存溢出为你收集整理的android – 如何在sdk 17和18之间改变列表项布局行为的变化?全部内容,希望文章能够帮你解决android – 如何在sdk 17和18之间改变列表项布局行为的变化?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1136065.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存