gpt4 book ai didi

android - 按钮出现在 android API 19 中,但不是 API 17

转载 作者:太空宇宙 更新时间:2023-11-03 12:05:11 25 4
gpt4 key购买 nike

目前,我正在使用 Android 4.4.2(API 19) 来运行我的项目,我可以看到所有布局都完美无缺。但是当我使用另一个设备 Android 4.2(API 17) 时,布局正在运行并且一些按钮没有显示(页脚布局)!!!我该如何解决这个问题?你们以前遇到过这个问题吗?谢谢。

ListView 按钮

这些是 xml 中的按钮,在我使用 Android API 17 时没有显示。只是一个普通按钮。他们应该在有 listView 时显示,但他们没有。

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

<TextView
android:id="@+id/totalHours"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/hours"
android:paddingRight="10dp"
android:text=" Total Hours : "
android:textColor="@color/blue"
android:textSize="16sp"/>

<TextView
android:id="@+id/hours"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/submit"
android:paddingRight="15dp"
android:textColor="@color/blue"
android:textSize="16sp"/>

<Button
android:id="@+id/submit"
android:layout_width="334dp"
android:layout_height="61dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/addClaims1"
android:layout_marginLeft="15dp"
android:text="submit"
android:theme="@style/ButtonTheme"/>

<Button
android:id="@+id/addClaims1"
android:layout_width="334dp"
android:layout_height="61dp"
android:layout_marginTop="10dp"
android:layout_below="@id/totalHours"
android:layout_marginLeft="15dp"
android:text="add claims"/>


</RelativeLayout>

Android 4.4.2(API 19)

enter image description here

Android 4.4.2(API 17)

enter image description here

最佳答案

在将适配器设置为 ListView 之前,您必须调用 addFooterView

编辑:

修改您的代码,以便在设置适配器之前设置 footerView,如下所示:

Activity A

footerLayout = (RelativeLayout) getLayoutInflater().inflate(R.layout.under_list_view_button, null);
btnAddClaims = (Button) footerLayout.findViewById(R.id.addClaims1);
btnSubmit=(Button)footerLayout.findViewById(R.id.submit);
objMyCustomBaseAdapter = new MyCustomBaseAdapter(getApplicationContext(), results, listview, footerLayout);
addOrRemoveFooter();
listview.setAdapter(objMyCustomBaseAdapter);

public void addOrRemoveFooter(){
if(results.size() == 0 && listview.getFooterViewsCount() > 0){
// listview.removeFooterView(footer);
listview.removeFooterView(footerLayout);
}else if(listview.getFooterViewsCount() == 0 && results.size() > 0){
// listview.addFooterView(footer);
listview.addFooterView(footerLayout);
}
}

关于android - 按钮出现在 android API 19 中,但不是 API 17,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34808044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com