Masalah saat menggunakan scrollview

ScrollView can host only one direct child

itu kenapa ya masalahnya? tolong di bantu gan

avatar Mujiburrohman
@Mujiburrohman

9 Kontribusi 0 Poin

Diperbarui 5 tahun yang lalu

2 Jawaban:

Di dalam satu ScrollView itu hanya boleh ada satu View groups / layout view / parent layout. Artinya kalau di dalam ScrollView terdepat banyak view, view2 tsb dibungkus dalam satu view groups.

avatar IfanZalukhu
@IfanZalukhu

217 Kontribusi 158 Poin

Dipost 5 tahun yang lalu

Tanggapan

owalah oke makasih gan

Jika Jawaban di atas kurang membantu ...

simplenya klo pake scroll view mau di dlmnya berisi apa bkin layout untuk mneghubungkan semuanya lalu atasnya baru di taro scrool view biar scroll viewnya bisa di gunakan

<pre> &lt;ScrollView android:layout_width="match_parent" android:layout_height="match_parent"&gt; &lt;!--layout yg menyambungkan agar bisa di pakai scrool view --&gt; &lt;LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"&gt; &lt;LinearLayout android:id="@+id/lin_pulsa" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_vertical" android:orientation="vertical" android:clickable="false" android:background="@drawable/bg_list_rounded"&gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_pulsa&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Pulsa&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:id=&quot;@+id/txt_status&quot;
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/lin_data&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_paket_data&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Paket Data&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/lin_bulk&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_bulk&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Paket Bulk&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/lin_gopay&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_gopay&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Gopay&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/lin_grabpay&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_grab&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Grabpay&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/lin_ovo&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_ovo&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli Ovo&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;LinearLayout
            android:id=&quot;@+id/line_emoney&quot;
            android:layout_width=&quot;match_parent&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:gravity=&quot;center_vertical&quot;
            android:orientation=&quot;vertical&quot;
            android:clickable=&quot;false&quot;
            android:background=&quot;@drawable/bg_list_rounded&quot;&amp;gt;

            &amp;lt;LinearLayout
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:gravity=&quot;center_vertical&quot;
                android:orientation=&quot;horizontal&quot;&amp;gt;

                &amp;lt;LinearLayout
                    android:layout_width=&quot;wrap_content&quot;
                    android:layout_height=&quot;wrap_content&quot;
                    android:layout_weight=&quot;1&quot;
                    android:orientation=&quot;vertical&quot;
                    android:paddingBottom=&quot;8dp&quot;
                    android:paddingLeft=&quot;14dp&quot;
                    android:paddingRight=&quot;8dp&quot;
                    android:paddingTop=&quot;8dp&quot;&amp;gt;
                    &amp;lt;LinearLayout
                        android:layout_width=&quot;match_parent&quot;
                        android:layout_height=&quot;wrap_content&quot;
                        android:orientation=&quot;horizontal&quot;&amp;gt;

                        &amp;lt;ImageView
                            android:layout_width=&quot;50dp&quot;
                            android:layout_height=&quot;50dp&quot;
                            android:src=&quot;@drawable/ic_menu_emoney&quot;/&amp;gt;
                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:layout_marginRight=&quot;30dp&quot;
                            android:layout_weight=&quot;1&quot;
                            android:text=&quot;Beli E-Money&quot;
                            android:textSize=&quot;15sp&quot;
                            android:textColor=&quot;@color/text_color3&quot;
                            android:textStyle=&quot;bold&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;

                        &amp;lt;TextView
                            android:layout_width=&quot;wrap_content&quot;
                            android:layout_height=&quot;match_parent&quot;
                            android:text=&quot;Open&quot;
                            android:textColor=&quot;@color/green2&quot;
                            android:textSize=&quot;12sp&quot;
                            android:gravity=&quot;center_vertical&quot;
                            android:paddingLeft=&quot;10dp&quot;/&amp;gt;
                    &amp;lt;/LinearLayout&amp;gt;
                &amp;lt;/LinearLayout&amp;gt;

                &amp;lt;ImageView
                    android:layout_width=&quot;15dp&quot;
                    android:layout_height=&quot;20dp&quot;
                    android:layout_marginLeft=&quot;8dp&quot;
                    android:layout_marginRight=&quot;10dp&quot;
                    android:background=&quot;@drawable/ic64_arrow_right3&quot; /&amp;gt;
            &amp;lt;/LinearLayout&amp;gt;

            &amp;lt;View
                android:layout_width=&quot;match_parent&quot;
                android:layout_height=&quot;1px&quot;
                android:background=&quot;@color/divider1&quot; /&amp;gt;

        &amp;lt;/LinearLayout&amp;gt;
        &amp;lt;!--penutup layout yg menyambungkan agar bisa di pakai scrool view --&amp;gt;
    &amp;lt;/LinearLayout&amp;gt;
&amp;lt;/ScrollView&amp;gt;

</pre>

maaf klo agak panjang xml nya

avatar digel
@digel

6 Kontribusi 1 Poin

Dipost 5 tahun yang lalu

Tanggapan

oke gan makasih

Login untuk ikut Jawaban