关注官方Android" Hello World"教程中,生成了两个布局文件:activity_main.xml
和fragment_main.xml
。同时,在类PlaceholderFragment
中生成嵌套类MainActivity
。然后教程要求更改fragment_main.xml
而不是activity_main.xml
。
我的第一个问题:
为什么要更改fragment_main.xml
而不是activity_main.xml
?
第二个问题:
课程PlaceholderFragment
是如何使用的?谁叫它?由于用户界面是fragment_main.xml
设计的,因此如何通过MainActivity
可视化用户界面?
activity_main.xml
:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myfirstapp.MainActivity"
tools:ignore="MergeRootFrame" />
fragment_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.myfirstapp.MainActivity$PlaceholderFragment" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
MainActivity.java
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}
}
感谢。 Deryk
答案 0 :(得分:0)
这是因为最近的一些更新并不是那么受欢迎(IMO)。基本上你在这里有一个主要活动,它膨胀作为容器的布局。 PlaceHolderFragment只是一个内部类,它会使实际的&#34; Hello World&#34;视图。
我猜测这种变化背后的原因是因为片段通常用于需要可重用代码的地方 - 你基本上从容器(活动)中抽象出视图(片段)。但这不是必需的。您可以通过将上面显示的TextView小部件复制粘贴到activity_main.xml(然后删除fragment_main.xml及其相应的支持代码 - PlaceHolderFragment)来实现相同的效果。
答案 1 :(得分:0)
1-您不必将其命名为fragment_main,但必须与此行中使用的名称相同:
inflater.inflate(R.layout.fragment_main, container, false);
2-用这行代码可视化:
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
是的,你正在使用片段,所以你应该阅读它。片段为UI管理提供了很多动力。