-1
私はstrings.xmlから文字列配列から配列を取得しているlistViewにいくつかの文字列データを出力しています。私は車を選択するとき、私はfargment以下のように起動して、getResources()。getStringArray(R.array.Passing_own_variable);
case R.id.vehicle:
bundle.putString("key_variable","vehicle");
msgListActivtiy loveweb=new msgListActivtiy();
loveweb.setArguments(bundle);
fragmentTransaction=fragmentManager.beginTransaction().replace(R.id.mainContainer,loveweb);
fragmentTransaction.commit();
break;
case R.id.foods:
bundle.putString("key_variable","food");
//othercodes
break;
case R.id.fruits:
bundle.putString("key_variable","fruits");
//othercodes
break;
は今、これを開き、その後、
のstrings.xml
<string-array name="vehicle">
<item>car</item>
<item>bur</item>
<item>van</item>
</string-array>
<string-array name="food">
<item>cake</item>
<item>donuts</item>
<item>Ice-cream</item>
</string-array>
<string-array name="fruits">
<item>apple</item>
<item>banana</item>
<item>grapes</item>
</string-array>
Now, Something In NavigationItem like:
vehicle
food
fruits
:作るために、あなたはより明確に私は例を挙げていますここでmsgListActivity
は
Likethis何かpublic class msgListActivtiy extends Fragment {
String localUrl;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
Bundle bundle=this.getArguments();
localUrl=bundle.getString("key_variable","defaultvalue");
View rootView=inflater.inflate(R.layout.lv,container,false);
ListView listView= (ListView) rootView.findViewById(R.id.listview);
//Now, below instead of giving car I need to set the localvariable that I
//have declared above.
//Something I want to pass like
//String[] res="getActivity().getResources().getStringArray(R.array."+localvariable+");"; I tried this and give me error like found string instead of String[]
//how can we achieve that? If that can't be done then how do we handle these kinds of situations??
String[] res=getActivity().getResources().getStringArray(R.array.need_variable_from_bundle_above);
ArrayAdapter<String> adapter=new ArrayAdapter<String>(getActivity(),android.R.layout.simple_list_item_1,res);
listView.setAdapter(adapter);
return rootView;
このIDを使用し、 "車両" のアレイで
を作業していると仮定し、その配列のIDを取得しますコード。タイトル自体は質問です。 R.arrayでown_variableをどのように渡すことができますか? –