我创建了一个应用程序,其中有两个片段,两个片段都有listviews。 fragment1中的第一个listview正在滚动,项目也会突出显示。但是在第二个片段中,列表视图不会滚动,甚至项目也不会突出显示。谁能告诉我这是什么问题?这里的事情是我只是通过将相同的片段类放到xml中的两个片段来检查它。要么它们都应该工作,要么两者都不应该因为一个与另一个没有区别。但为什么会出现这个问题?
我的片段类:
public class Fragment1 extends ListFragment{
String[] countries = new String[] {
"India",
"Pakistan",
"Sri Lanka",
"China",
"Bangladesh",
"Nepal",
"Afghanistan",
"North Korea",
"South Korea",
"Japan"
};
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
return inflater.inflate(R.layout.fragment1,container,false);
}
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
ArrayAdapter<String> adapter=new ArrayAdapter<String>(getActivity(),android.R.layout.simple_list_item_1,countries);
setListAdapter(adapter);
}
public void onListItemClick(ListView parent, View v,int position, long id)
{
Toast.makeText(getActivity(), "You have selected "+countries[position], Toast.LENGTH_SHORT).show();
}
}
main.xml中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment
android:name="com.example.listfragmentexample.Fragment1"
android:id="@+id/fragment1"
android:layout_weight="0.5"
android:layout_width="0dp"
android:layout_height="200dp" />
<fragment
android:name="com.example.listfragmentexample.Fragment1"
android:id="@+id/fragment2"
android:layout_weight="0.5"
android:layout_width="0dp"
android:layout_height="300dp"/>
</LinearLayout>
fragment1.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:drawSelectorOnTop="false"/>
</LinearLayout>
答案 0 :(得分:3)
因此,根据您的代码,您似乎将同一Fragment1 class
引用到main.xml
中的两个片段。我假设您的活动类只包含 onCreate()方法中的 setContentView()。由于这两个片段都在一个活动上,因此最初只有一个视图会被突出显示。我刚检查过这个,但它运行正常。 Just drag the listview in the second fragment,
而你可能一直在滚动它。如果您希望第二个列表视图突出显示,我担心您可能需要单独的xml文件(比如fragment1和fragment2)以及片段的单独类,并通过添加以下代码来获得您首先需要的焦点。
listView1 = (ListView)findViewById(R.id.listView1);
listView1.requestFocus();
祝你好运。