-1

これはルートビューを取得する方法です:

View rootView = findViewById(android.R.id.content).getRootView();

rootviewのスクリーンショットを撮るのはうまくいきます。imageViewしかし、私の質問は、これに対してのみを定義する方法Viewですか? screenshoot次に、特定の画像ビューを取得できるのは私だけです。

注: View rootView = findViewById(android.R.id.**imageview**).getRootView();エラーが発生します。

更新:特定の imageView のスクリーン ショットを取得できるクラスおよび xml ファイル。解決したら更新!

活動クラス:

public class SStest extends Activity {

Button button1;
LinearLayout ll2;

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.sstest);
    
    Button button1= (Button) findViewById(R.id.button1);
    ll2 = (LinearLayout )findViewById(R.id.ll2);
    
    button1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
        // TODO Auto-generated method stub

                    Bitmap bitmap = takeScreenshot();
        saveBitmap(bitmap);
        
        }
    });


}
public Bitmap takeScreenshot() {

    View rootView=getWindow().getDecorView().findViewById(R.id.ll2);
rootView.setDrawingCacheEnabled(true);     
return rootView.getDrawingCache();
       
    }

public void saveBitmap(Bitmap bitmap) {
    
String root = Environment.getExternalStorageDirectory().toString();
    File newDir = new File(root + "/MapCards");    
    newDir.mkdirs();
    Random gen = new Random();
    int n = 10000;
    n = gen.nextInt(n);
    String fotoname = "Photo-"+ n +".jpg";
    File file = new File (newDir, fotoname);
    if (file.exists ()) file.delete (); 
    try {
        FileOutputStream fos = new FileOutputStream(file);
        bitmap.compress(CompressFormat.JPEG, 100, fos);
        fos.flush();
        fos.close();
    } catch (FileNotFoundException e) {
        Log.e("GREC", e.getMessage(), e);
    } catch (IOException e) {
        Log.e("GREC", e.getMessage(), e);
    }
}
}

.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/stainbck"
android:orientation="vertical" >

<Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Button" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"
    android:text="TextView"
    android:textSize="15dp" />

<LinearLayout
    android:id="@+id/ll2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"           
        android:background="@drawable/ic_launcher" />
</LinearLayout>
4

1 に答える 1

1

ここからこれを変更する必要があります

View rootView = findViewById(android.R.id.content).getRootView();

View rootView = findViewById(R.id.imageview).getRootView();

次のようにできる別のこと。

ImageView iv;

onCrate()メソッドでIDを見つける

iv = (ImageView)findViewById(R.id.imageview);

今あなたの方法で

View rootView = iv.getRootView();

アップデート:

xml ファイルを次のように変更します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:text="TextView"
        android:textSize="15dp" />

    <LinearLayout
        android:id="@+id/rootView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/imageview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="15dp"
            android:background="@drawable/ic_launcher" />
    </LinearLayout>

</LinearLayout>

ImageViewの ID を検索する代わりに、 のID を検索する必要がなくなりましたLinearLayout

LinearLayout ll;

onCreate()

ll = (LinearLayout )findViewById(R.id.rootView);

今あなたの方法で

View rootView = ll.getRootView();
于 2014-05-22T07:02:02.737 に答える