1

不,真的,我没有做任何具体的事情。我正在关注这个教程:http: //developer.android.com/training/basics/fragments/fragment-ui.html

我只是用 FragmentManager 的替换加载我的片段。

我试图在 Fragment 的布局中更改 textSize。我在其他设备上尝试过,其他 rom...我尝试在 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();
            }

谢谢亲爱的碎片大师。愿米奇的力量与你同在:)

4

0 回答 0