2013-07-04 40 views
0

在我的佈局xml文件中,我想'android:src ='「'從drawable中的'bg'文件夾中拉出一個隨機圖像。如何在佈局xml中拉取隨機圖像?

我知道這可以通過實用的方式完成,但我想保留它在佈局文件中。

有沒有什麼辦法在bg文件夾中創建一個包含所有內容的數組,並從佈局xml中將其拉出?

回答

1

簡短的答案是否定的,但我可以提供源代碼,以幫助做到這一點編程

編輯:您需要將所有你想要在你的繪圖資源文件夾中使用的圖片,然後在bg.xml把那些你想要出現在按鈕中,請看下面的例子,goodluck!

MainActivity.java

package com.example.stackoverflow17462606; 

import java.util.Random; 

import android.os.Bundle; 
import android.app.Activity; 
import android.content.res.TypedArray; 
import android.view.Menu; 
import android.widget.ImageView; 

public class MainActivity extends Activity { 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     ImageView imageView = (ImageView) findViewById(R.id.imageView); 
     imageView.setImageResource(getRandomImage()); 
    } 

    private int getRandomImage() { 
     TypedArray imgs = getResources().obtainTypedArray(R.array.random_imgs); 
     // or set you ImageView's resource to the id 
     int id = imgs.getResourceId(new Random().nextInt(imgs.length()), -1); //-1 is default if nothing is found (we don't care) 
     imgs.recycle(); 
     return id; 
    } 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.main, menu); 
     return true; 
    } 

} 

bg.xml

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
     <string-array name="random_imgs"> 
     <item>@drawable/ic_launcher</item> 
     <item>@drawable/ic_settings</item> 
     <!-- ... --> 
    </string-array> 

</resources> 

activity_main.xml中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity" > 

    <ImageView 
     android:id="@+id/imageView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true"/> 

</RelativeLayout> 
+0

我不知道我怎樣才能像到相同的位置,如果我按步進行?目前ImageView在RelativeLayout中 – CitizenSmif

+0

如果你提供了代碼,我可以幫助你,但基本上你應該已經在你的佈局中使用了ImageView,並且你只是改變了代碼中的src。 –

+0

您能否提供使之成爲可能的代碼?編輯爲 – CitizenSmif