我正在尝试创建一个要搜索的活动,并且有两种不同的布局,每种布局都有不同的搜索条件。我想用旋转器来做这件事。不要真的有任何代码,因为我已经尝试删除了,但任何帮助都表示赞赏。
答案 0 :(得分:8)
您可以使用Activity.setContentView()
将活动的整个内容视图切换到onItemSelected
回调中的新视图或布局资源,但我希望这不是您想要的,因为它会取代旋转器本身。
如何在您的活动的内容视图中添加/替换子视图?这可能是从XML资源中膨胀的视图,他们可以共享一些视图ID以减少所需的代码(或者您可以将行为委托给单独的类)。
例如:
main.xml
:
<LinearLayout ...> <!-- Root element -->
<!-- Put your spinner etc here -->
<FrameLayout android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:id="@+id/search_criteria_area" />
</LinearLayout>
search1.xml
:
<!-- Contents for first criteria -->
<LinearLayout ...>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffff0000"
android:id="@+id/search_content_text" />
</LinearLayout>
search2.xml
:
<!-- Contents for second criteria -->
<LinearLayout ...>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff00ff00"
android:id="@+id/search_content_text" />
</LinearLayout>
然后在你的活动中,你可以像这样切换它们:
public class SearchActivity extends Activity {
// Keep track of the child view with the search criteria.
View searchView;
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
ViewGroup searchViewHolder = (ViewGroup)findViewById(R.id.search_criteria_area);
if (searchView != null) {
searchViewHolder.removeView(searchView);
}
int searchViewResId;
switch(position) {
case 0:
searchViewResId = R.layout.search1;
break;
case 1:
searchViewResId = R.layout.search2;
break;
default:
// Do something sensible
}
searchView = getLayoutInflater().inflate(searchViewResId, null);
searchViewHolder.addView(searchView);
TextView searchTextView = (TextView)searchView.findViewById(R.id.search_content_text);
searchTextView.setText("Boosh!");
}
}