不,我没有做任何具体的事情。 我跟着这个tuto:http://developer.android.com/training/basics/fragments/fragment-ui.html
我只是使用FragmentManager中的replace来加载我的片段。
我尝试在Fragment的布局中更改textSize。 我尝试过其他设备,其他设备...... 我尝试在FrameLayout或LinearLayout中推送他......
无事可做:>
我确定您使用过Fragment。而且我确定它发生在你身上!告诉我。告诉我我需要知道的事情:)
作为随机数据,这里是:
我片段的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_margin="3dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="7dp"
android:layout_weight="1">
<TextView
android:id="@+id/BillId"
android:text="BillId : "
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/BuyerLastName"
android:text="BuyerLastName : "
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/BuyerFirstName"
android:text="BuyerFirstName : "
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/CarId"
android:text="CarId : "
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="7dp"
android:layout_weight="1">
<TextView
android:id="@+id/BillIdValue"
android:text="BillId"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/BuyerLastNameValue"
android:text="BuyerLastName"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/BuyerFirstNameValue"
android:text="BuyerFirstName"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/CarIdValue"
android:text="CarId"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</LinearLayout>
这是我的片段Java代码:
public class ShowCarFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_show_car, container, false);
}
}
在这里,我在我的Activity中启动片段:
if (getMaxPayne() >= 2) {
getFragmentManager().beginTransaction()
.addToBackStack(null)
.replace(R.id.fragmentContainer, new ShowCarFragment())
.commit();
} else {
getFragmentManager().beginTransaction()
.addToBackStack(null)
.add(R.id.fragmentContainer, new ShowCarFragment())
.commit();
}
谢谢亲爱的片段大师。 May Mickey的力量与你同在:)