簡體   English   中英

Android部分持久保存的InstanceState

[英]Android partially persistent savedInstanceState

我有一個android片段,僅當方向更改時才還原類對象的最后一部分。 我的代碼如下:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    if (getArguments().containsKey(ARG_ITEM_ID)) {
        // Load the weapon content specified by the fragment
        mWeapon = EquipmentContent.WEAPON_MAP.get(getArguments().getString(ARG_ITEM_ID));
    }
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.main_fragment, container, false);

    // get reference to the ImageViews
    weaponImageView = (ImageView) rootView.findViewById(R.id.picture);
    groupImageView = (ImageView) rootView.findViewById(R.id.groupSymbol);
    individualImageView = (ImageView) rootView.findViewById(R.id.individualSymbol);

    // get a reference to the linear layout
    statLinearLayout = (LinearLayout) rootView.findViewById(R.id.statLinearLayout);

    if (mWeapon != null) {

        AssetManager assets = getActivity().getAssets();
        InputStream pictureStream;
        InputStream groupStream;
        InputStream individualStream;

        try
        {
           // get an InputStream to the asset representing the next picture
            pictureStream = assets.open("Pictures/" + mWeapon.picture + ".png");

            // load the asset as a Drawable and display on the ImageView
            Drawable picture = Drawable.createFromStream(pictureStream, mWeapon.picture);
            weaponImageView.setImageDrawable(picture);
        }
        catch (IOException e)
        {
            Log.e("MainFragment", "Error loading " + mWeapon.picture + ".png", e);
        }
        try
        {
            // get an InputStream to the asset representing the next picture
            groupStream = assets.open("Group/" + mWeapon.group + ".png");

            // load the asset as a Drawable and display on the ImageView
            Drawable group = Drawable.createFromStream(groupStream, mWeapon.group);
            groupImageView.setImageDrawable(group);
        }
        catch (IOException e)
        {
            Log.e("MainFragment", "Error loading " + mWeapon.group + ".png", e);
        }
        try
        {
            // get an InputStream to the asset representing the next picture
            individualStream = assets.open("Individual/" + mWeapon.individual + ".png");

            // load the asset as a Drawable and display on the ImageView
            Drawable individual = Drawable.createFromStream(individualStream, mWeapon.individual);
            individualImageView.setImageDrawable(individual);
        }
        catch (IOException e)
        {
            Log.e("MainFragment", "Error loading " + mWeapon.individual + ".png", e);
        }
        ((TextView) rootView.findViewById(R.id.item_detail)).setText(mWeapon.id); // Sets the title text of the fragment
        populateStatistics(inflater);


    }
    return rootView;
}

public void populateStatistics(LayoutInflater inflater) {
    // TODO: currently reverts all EditText views to the last input upon orientation change
    if (!mWeapon.priWeapon.equals("null")) { // if the primary weapon is not null, then inflate relevant TextViews
        TableLayout priWeaponIDTableLayout = (TableLayout) inflater.inflate(R.layout.statistics_text_view, null); // Weapon title statistic
        statLinearLayout.addView(priWeaponIDTableLayout);
        ((TextView) priWeaponIDTableLayout.findViewById(R.id.category)).setText(R.string.priWeapon);
        ((EditText) priWeaponIDTableLayout.findViewById(R.id.statistic)).setText(String.format("%s", mWeapon.priWeapon));
        TableLayout priWeaponRangeTableLayout = (TableLayout) inflater.inflate(R.layout.statistics_text_view, null); // Weapon range statistic
        statLinearLayout.addView(priWeaponRangeTableLayout);
        ((TextView) priWeaponRangeTableLayout.findViewById(R.id.category)).setText(R.string.priMaxRange);
        ((TextView) priWeaponRangeTableLayout.findViewById(R.id.category)).setTypeface(null, Typeface.NORMAL);
        ((TextView) priWeaponRangeTableLayout.findViewById(R.id.statistic)).setTypeface(null, Typeface.NORMAL);
        ((EditText) priWeaponRangeTableLayout.findViewById(R.id.statistic)).setText(String.format("%s meters", mWeapon.priMaximumRange));
        TableLayout priWeaponPenTableLayout = (TableLayout) inflater.inflate(R.layout.statistics_text_view, null); // Weapon penetration statistic
        statLinearLayout.addView(priWeaponPenTableLayout);
        ((TextView) priWeaponPenTableLayout.findViewById(R.id.category)).setText(R.string.priPen);
        ((TextView) priWeaponPenTableLayout.findViewById(R.id.category)).setTypeface(null, Typeface.NORMAL);
        ((TextView) priWeaponPenTableLayout.findViewById(R.id.statistic)).setTypeface(null, Typeface.NORMAL);
        ((EditText) priWeaponPenTableLayout.findViewById(R.id.statistic)).setText(String.format("%s mm", mWeapon.priPenetration));
    }

}

我在下面進行充氣和修改的自定義布局。

 <?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="*">
    <!-- Table Row 0 -->
    <TableRow
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:id="@+id/tableRow0">
        <TextView
            android:id="@+id/category"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="@string/priWeapon" android:textColor="#000" android:textStyle="bold"
            android:layout_weight="1"
            android:gravity="left"
            android:padding="5dp"/>
        <EditText
            android:id="@+id/statistic"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="@string/NA" android:textSize="14sp" android:textStyle="bold"
            android:gravity="center"
            android:focusable="false"
            android:layout_weight="1"
            android:cursorVisible="false"
            android:longClickable="false"/>
    </TableRow>
</TableLayout>

方向更改時,幾乎所有內容都可以正常加載,包括標題,圖片.png,組和單個.png,武器ID和武器穿透統計信息。 問題在於,由於某種原因,武器穿透統計信息會替換主要武器ID和最大射程。 我不確定為什么。 任何幫助表示贊賞。

我修改了代碼,並將常見的有缺陷的分母視圖類型“ EditText”更改為“ TextView”。 現在,它保留了應有的數據。 由於某種原因,EditText savedInstanceState不是持久性的,而TextView是持久性的。 我最初使用EditText的原因是因為我使用的Dietel書將其用於提供下划線的好處。 現在,我只需要創建一個自定義背景來復制下划線並將其應用到XML中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM