【问题标题】:How to put programmatically created Horizontally Scrolling view with XML created Layout in Android?如何在 Android 中使用 XML 创建的布局以编程方式创建的水平滚动视图?
【发布时间】:2018-07-06 22:18:18
【问题描述】:

在我的应用中,用户可以从图库中选择多张图片,然后他可以在应用中查看。

Relative Layout 中有三个按钮

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.codenemesis.multipleimg.MainActivity">

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="imageSelector"

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="up"
    android:text="Upload"/>

<Button
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="viewclick"
    android:text="View Images" />

为了显示我以编程方式在HorizontalScrollView 中创建的ImageView 数组设置为WRAP_CONTENT 的图像,但问题是当我单击查看按钮HorizontalScrollView 时跨越整个屏幕,如this。 我想在查看按钮下方显示HorizontalScrollView。我该怎么做?

这是我创建 Horizo​​ntalScrollView

的方法
  HorizontalScrollView horizontalScrollView = new HorizontalScrollView(this);
                   LinearLayout linearLayout = new LinearLayout(this);
                   ViewGroup.LayoutParams prams = new ViewGroup.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
                   linearLayout.setLayoutParams(prams);
                   linearLayout.setOrientation(LinearLayout.HORIZONTAL);


                   horizontalScrollView.addView(linearLayout);
                   // mArrayUri is the arraylist of images selected from gallery
                   int b = mArrayUri.size();
                   int c = 0;

                   ImageView[] imageViews = new ImageView[mArrayUri.size()];
                   while (c < mArrayUri.size()) {
                       imageViews[c] = new ImageView(this);
                       imageViews[c].setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
                               LinearLayout.LayoutParams.WRAP_CONTENT));
                       imageViews[c].setPadding(10,0,10,0);
                       imageViews[c].setImageURI(mArrayUri.get(c));
                       linearLayout.addView(imageViews[c]);
                       c++;
                       // Set context view
                       setContentView(horizontalScrollView);

【问题讨论】:

    标签: java android android-layout horizontal-scrolling android-layoutparams


    【解决方案1】:

    你的xml文件中的代码应该是这样的

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.test.myapplication.MainActivity">
    
    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="select images"
        android:onClick="imageSelector"/>
    
    <Button
        android:id="@+id/button2"
        android:layout_toRightOf="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="up"
        android:text="Upload"/>
    
    <Button
        android:id="@+id/button3"
        android:layout_toRightOf="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="viewclick"
        android:text="View Images" />
    
    <RelativeLayout
        android:id="@+id/parent_panel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button"
        android:layout_marginTop="10dp"
        >
    
    </RelativeLayout>
    

    你的java文件中的代码应该是这样的

         public class MainActivity extends AppCompatActivity {
    RelativeLayout relativeLayout;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        relativeLayout=findViewById(R.id.parent_panel);
    }
    public void imageSelector(View view)
    {
    }
    public void up(View view)
    {
    }
    public void viewclick(View view)
    {
        HorizontalScrollView horizontalScrollView =
        new HorizontalScrollView(this);
        LinearLayout linearLayout = new LinearLayout(this);
        ViewGroup.LayoutParams prams = new ViewGroup.LayoutParams(
        LinearLayout.LayoutParams.WRAP_CONTENT,
        LinearLayout.LayoutParams.WRAP_CONTENT);
        linearLayout.setLayoutParams(prams);
        linearLayout.setOrientation(LinearLayout.HORIZONTAL);
        horizontalScrollView.addView(linearLayout);
        // mArrayUri is the arraylist of images selected from gallery
        int b = mArrayUri.size();
        int c = 0;
        ImageView[] imageViews = new ImageView[mArrayUri.size()];
        while (c < mArrayUri.size()) {
            imageViews[c] = new ImageView(this);
            imageViews[c].setLayoutParams(new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.WRAP_CONTENT,
            LinearLayout.LayoutParams.WRAP_CONTENT));
            imageViews[c].setPadding(10, 0, 10, 0);
            imageViews[c].setImageURI(mArrayUri.get(c));
            linearLayout.addView(imageViews[c]);
            c++;
        }
        relativeLayout.addView(horizontalScrollView);
    }
    

    }

    这应该对你有用。

    【讨论】:

    • 嘿 Farhan,感谢您的帮助,但我仍然收到此错误,“指定的孩子已经有父母。您必须先在孩子的父母上调用 removeView()。在 android .view.ViewGroup.addViewInner(ViewGroup.java:4454)" 错误指向relativeLayout.addView(horizontalScrollView
    • 嘿 Farhan,感谢您的帮助,在您的解决方案之后我仍然收到此错误,“指定的孩子已经有父母。您必须先在孩子的父母上调用 removeView()。在 android.view.ViewGroup.addViewInner(ViewGroup.java:4454)" 错误指向relativeLayout.addView(horizontalScrollView。所以我删除了setContentView(horizontalScrollView); 行,它运行良好。非常感谢。
    • 去掉这一行 setContentView(horizo​​ntalScrollView);
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-04-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-08-04
    相关资源
    最近更新 更多