简体   繁体   English

如何以编程方式将图像添加到LinearLayout?

[英]How can I add images to a LinearLayout programmatically?

There is a LinearLayout and some Buttons in my project. 我的项目中有一个LinearLayout和一些Buttons。 I want when each Button clicked add a small image to LinearLayout from drawable. 我想在点击每个Button时从drawable向LinearLayout添加一个小图像。 How can I add a image to a LinearLayout programmatically? 如何以编程方式将图像添加到LinearLayout?

This is my LinearLayout in a HorizontalScrollView: 这是我在Horizo​​ntalScrollView中的LinearLayout:

     <HorizontalScrollView
        android:id="@+id/horizontalScrollView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="top|center"
        >

        <LinearLayout
            android:id="@+id/LinearLayout1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >


        </LinearLayout>
    </HorizontalScrollView>

and here is my activity: 这是我的活动:

public class MainActivity extends Activity
{

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

            final LinearLayout notes = (LinearLayout)  findViewById(R.id.LinearLayout_notes);
            final  ImageView notes_do = new ImageView(this);
            notes_do.setBackgroundResource(R.drawable.notes_do);

    new Thread(new Runnable() {
        @Override
        public void run() {

    final ImageButton img_1 = (ImageButton) findViewById(R.id.img_1_);
    img_1.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {

        if( event.getAction() ==  MotionEvent.ACTION_DOWN ) {

              notes.addView(notes_do);

        }
            return true;
        } 

       });  // end of ontouch

           }
          }).start(); // end of thread      


} // end of oncreate
}// end of activity
    LinearLayout ll = (LinearLayout)findViewById(R.id.LinearLayout1);
for(int i=0;i<5;i++)
{
        ImageView ii= new ImageView(this);
        ii.setBackgroundResource(R.drawable.ic_action_search);
        ll.addView(ii);
}

You can do a findViewById to the linearlayout and add an imageview to it dynamically in the onclicklistener of button 您可以对linearlayout执行findViewById,并在按钮的onclicklistener中动态添加imageview

LinearLayout linLay = (LinearLayout)findViewById(R.id.LinearLayout1);
ImageView image = new ImageView(this);
//add image to imageview
...
linLay.addView(image); 
        ImageView img = new ImageView( this);
        LinearLayout rl = (LinearLayout) findViewById(R.id.LinearLayout1);
        LinearLayout.LayoutParams viewParamsCenter = new LinearLayout.LayoutParams(
                LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        img.setImageResource(R.drawable.ic_launcher);
        img.setLayoutParams(viewParamsCenter);
        rl.add(img);

As you want to set the image dynamically, on the button's click. 如果要动态设置图像,请单击按钮。 you can add the image view to the linear layout 您可以将图像视图添加到线性布局

    View LinearLayout1 = findViewById(R.id.Layout1);
    ImageView image1 = new ImageView(getApplicationContext());
    String uri = "@drawable/myresource.png"; // Here you can set the name of
                                                // the image dynamically
    int imageResource = getResources().getIdentifier(uri, null,
            getPackageName());
    Drawable res = getResources().getDrawable(imageResource);
    image1.setImageDrawable(res);
    ((ViewGroup) LinearLayout1).addView(image1);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM