0

我是法国人,但我会尝试解释我的问题一个新活动,特别是一个新视图(facebook.java),我可以用一个按钮来做,但我不能因为我的 ListView ,这是我的代码:

    package com.androiddev.tab;

import java.io.FileNotFoundException;
...

public class Tab5 extends ListActivity implements OnClickListener {
private ListView maListViewPerso25;

        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                requestWindowFeature(Window.FEATURE_NO_TITLE);
                setContentView(R.layout.onglet5);

                Button button = (Button) findViewById(R.id.imageButtonSelector2);
                button.setOnClickListener(this);


                maListViewPerso25 = (ListView) findViewById(R.id.listView25);
                ArrayList<HashMap<String, String>> listItem25 = new ArrayList<HashMap<String, String>>();
                HashMap<String, String> map;
                map = new HashMap<String, String>();
                map.put("titre", "1 - Qui sommes-nous ?");
                map.put("img", String.valueOf(R.drawable.fleche));
                map.put("file", "QSN.pdf");
                listItem25.add(map);
                map = new HashMap<String, String>();
                map.put("titre", "2 - A propos de l'application");
                map.put("img", String.valueOf(R.drawable.fleche));
                map.put("file", "Apropos.pdf");
                listItem25.add(map);
                map = new HashMap<String, String>();
                map.put("titre", "3 - Sur Facebook");
                map.put("img", String.valueOf(R.drawable.fleche));
                listItem25.add(map);
                SimpleAdapter mSchedule = new SimpleAdapter (this.getBaseContext(), listItem25, R.layout.afichageitem,
                  new String[] {"img", "titre" }, new int[] {R.id.fleche, R.id.titre});
                maListViewPerso25.setAdapter(mSchedule);


                //LISTENER


                maListViewPerso25.setOnItemClickListener(new OnItemClickListener() {
                   public void onItemClick(AdapterView<?> a, View v, int position, long id) {
                         HashMap<String, String> map = (HashMap<String, String>) maListViewPerso25.getItemAtPosition(position);
                         String nomFichierDansAsset = map.get("file");
                         String nomFichierTemp = "list25.pdf";


                         if (copyAssetToTempFile(nomFichierDansAsset, nomFichierTemp)) {
                          try {
                                String name = getFileStreamPath(nomFichierTemp).getAbsolutePath();
                                Uri uri = Uri.parse("file://" + name);
                                Intent intent = new Intent(Intent.ACTION_VIEW);
                                intent.setDataAndType(uri, "application/pdf");
                                startActivity(intent);
                          } catch (ActivityNotFoundException e) {
                                // Cas d'erreur si pas de lecteur PDF installé
                                Log.d("xx", "Erreur affichage PDF", e);
                          }
                        }
                  }
                 });


                 };
  private boolean copyAssetToTempFile(String nomFichierAsset,
           String nomFichierTemp) {
           boolean result = true;
           try {
                 byte[] buffer = new byte[512];
                 FileOutputStream fos = openFileOutput(nomFichierTemp, MODE_WORLD_READABLE);
                 InputStream is = getAssets().open(nomFichierAsset);
                 int bytesRead = is.read(buffer);
                 while (bytesRead > 0) {
                   fos.write(buffer, 0, bytesRead);
                   bytesRead = is.read(buffer);
                 }
                 fos.close();
                 is.close();
           } catch (FileNotFoundException e) {
                 // Cas d'erreur de création de fichier
                 Log.d("xx", "Erreur creation fichier ", e);
                 result = false;
           } catch (IOException e) {
                 // Cas d'erreur de lecture de fichier
                 Log.d("xx", "Erreur lecture fichier", e);
                 result = false;
           }
           return result;
         }  
// POUR LE BOUTON
  public void onClick(View src) {
         Intent i = new Intent(this, TabAndroidActivity.class);
         startActivity(i);
  };
  }
4

2 回答 2

2

试试这个代码:

if(map.get("titre").equals("YourTile") {
    Intent mainIntent = new Intent(Tab5.this, "Your Facebook Activity Here".class);
    startActivity(mainIntent);
}
于 2012-07-19T13:46:26.647 回答
1

你可以做第一件事onItemClick

if(map.get("titre").equals("3 - Sur Facebook") {
    startActivity(new Intent(this, TabAndroidActivity.class));
    return;
}

这很难看,但如果它是您正在寻找的,那么您将能够做得更好

于 2012-05-28T19:08:50.917 回答