1

我正在阅读用于 android 编程的 Big Nerd Ranch 指南,我正面临第 16 章的挑战。挑战是为 ListView 制作一个 EmptyView,然后在 EmptyView 上制作一个添加内容的按钮。我让 EmptyView 工作,但我不知道应该在哪里制作按钮。这是我的代码。

public View onCreateView(LayoutInflater inflater, ViewGroup parent, 
Bundle savedInstanceState) {
View v= super.onCreateView(inflater, parent, savedInstanceState);
inflater.inflate(R.layout.list_frame_layout, parent);

return v;
}

这是我的 XML。

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

<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

</ListView>

<LinearLayout android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:orientation="vertical"
android:gravity="center">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
android:text="@string/empty_no_crime" />

<Button
android:id="@+id/empty_new_crime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/empty_new_crime">     
</Button>
</LinearLayout>
</FrameLayout>

这本书告诉我们使用片段,因此膨胀。我认为代码应该是

mNewCrime=(Button)getView().findViewById(R.id.empty_new_crime)

但这行不通。有任何想法吗?

编辑*:嗯,显然这也不是那么好。当我添加东西时, EmptyView 并没有消失,它只是在列出项目时被推下。我添加东西后如何使 EmptyView 消失的任何想法?

4

2 回答 2

1

起初我也遇到了这个挑战。我想多了!您现在可能已经解决了这个问题,但我认为为其他人发布答案会很有用。以下对我有用:

  1. 创建一个新的 XML 文件,指定“空”和“列表”视图,就像您已经完成的那样。

  2. 修改您现有的 onCreateView 方法以扩展新的修改布局,其中包含您在 XML 中定义的“空”和“列表”视图。

  3. 创建一个新按钮并为该按钮设置 onClickListener。

这是代码:

@TargetApi(11)
@Override
// We override the onCreateView to set the subtitle by default if we are rocking >3.0 
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState)
{
    super.onCreateView(inflater, parent, savedInstanceState);   

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
        if(mSubtitleVisible){
            getActivity().getActionBar().setSubtitle(R.string.subtitle);
        }// End inner if
    }// End if

    View v = inflater.inflate(R.layout.empty_layout, parent, false);

    mNewCrimeButton = (Button)v.findViewById(R.id.add_crime);
    //Define an click event listener for the button and launch the new crime fragment when clicked
    mNewCrimeButton.setOnClickListener(new View.OnClickListener(){
                public void onClick(View v){
                    Crime crime = new Crime();
                    //Get the crimelab from the activity and add the crime
                    CrimeLab.get(getActivity()).addCrime(crime); //getActivity returns the activity this fragment is attached to
                    Intent i = new Intent(getActivity(), CrimePagerActivity.class);
                    startActivityForResult(i,0);
                }//End onClick
            });

    return v;
}// End onCreateView 

这应该适用于您现有的 xml 布局。我希望这有帮助。

于 2013-06-18T11:57:58.877 回答
0

我最初也为此苦苦挣扎,基本上以与上述海报相同的方式解决了它。但是我的问题有点不同。我在启动时被应用程序轰炸了,因为我设置 onClick 侦听器的代码如下所示:

Button mCrimeButton = (Button)v.findViewById(R.id.crime_button);
mCrimeButton.setOnClickListener(new View.OnClickListener(){
    public void onClick(View v) {
        initiateCrimeRecord();
    }
});

直到我将 mCrimeButton 的声明移至类级别,使其成为类的实例变量,我才能够成功执行应用程序:

public class CrimeListFragment extends ListFragment {
    private static final String TAG = "CrimeListFragment";
    private ArrayList<Crime> mCrimes;
    private boolean mSubtitleVisible;
    private Button mCrimeButton;
    *
    *
    *

@TargetApi(11)
@Override

public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
    View v = inflater.inflate(R.layout.fragment_empty_crime_list, parent, false);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        if ( mSubtitleVisible) {
            getActivity().getActionBar().setSubtitle(R.string.subtitle);
        } else {
            getActivity().getActionBar().setSubtitle(null);
        }

    }

    // Set the button up on the empty view
    mCrimeButton = (Button)v.findViewById(R.id.crime_button);
    mCrimeButton.setOnClickListener(new View.OnClickListener(){
        public void onClick(View v) {
            initiateCrimeRecord();
        }
    });

    return v;
}

然后我回过头来注意到,在本书的所有其他示例中,被操作的小部件都被声明为类的私有实例。为什么是这样?Android 不允许你只获取一个本地实例来附加监听器?

于 2014-12-03T16:48:17.173 回答