0

スクロール ビューに linearlayout を追加しようとしています。これはコードがコンパイルするコードですが、新しいレイアウトが表示されません。

これは元のレイアウトです(追加したい)

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" 

android:layout_margin="15dp"
android:layout_marginTop="15dp">

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp" 
     android:id="@+id/ViewHistoryImageLayout">

    <ImageView
        android:id="@+id/HistoryImage"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="0.76"
        android:gravity="center"
        android:padding="10dp"
        android:src="@drawable/upload" 
        android:contentDescription="@string/HistoryImage"/>

    <TextView
        android:id="@+id/TranslatedText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.12"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:text="@string/translateImageButton" />

</LinearLayout>

そして、これは私が何度か追加したいレイアウトです:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/TranslationMenuLayout" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<RatingBar
    android:id="@+id/ratingBar1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:numStars="5" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="TextView" />

</LinearLayout>

新しいレイアウトを追加するための Java コードは次のとおりです。

setContentView(R.layout.activity_view_history_image);
ScrollView sv = new ScrollView(this);
LayoutInflater inflater = (LayoutInflater) getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View ll = inflater.inflate(R.layout.translation_menu, null);
sv.addView(ll);

コードは正常にコンパイルされ、アプリは実行されていますが、何も起こりません.xml ファイルの 1 つに問題がありますか?

tnx

4

4 に答える 4

1

作成する代わりに、既存の ScrollView レイアウトを取得する必要があります。

setContentView(R.layout.activity_view_history_image);
LayoutInflater inflater = (LayoutInflater) getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View ll = inflater.inflate(R.layout.translation_menu, null);
ScrollView sv = (ScrollView) findViewById(R.id.ScrollView01);
sv.addView(ll);

役立つかもしれません。

于 2013-01-10T15:14:33.307 に答える
0

layout_width元のLinearLayoutwrap_contentの代わりにに変更する必要があると思いますmatch_parent。レイアウト全体を占めています

于 2013-01-10T15:11:57.197 に答える
0

次のように、別の ImageView を作成して機能させます。

LinearLayout linearLayout = (LinearLayout) findViewById(R.id.selected_spotphotos_container);
        imageView = new ImageView(getApplicationContext());
        imageView1 = new ImageView(getApplicationContext());
        imageView2 = new ImageView(getApplicationContext());

        imageView.setImageBitmap(bmImg1);
        imageView1.setImageBitmap(bmImg2);
        imageView2.setImageBitmap(bmImg3);

        linearLayout.addView(imageView,0);
        linearLayout.addView(imageView1,1);
        linearLayout.addView(imageView2,2);

XML コードは次のとおりです。

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="1"
    >
....

<HorizontalScrollView
        android:id="@+id/hori_scroll_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="false"
        android:foregroundGravity="left"
        android:paddingBottom="1dp"
        android:paddingTop="1dp"
        android:visibility="visible"
        >

        <LinearLayout
            android:id="@+id/selected_spotphotos_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="left"
            android:animateLayoutChanges="true"
            android:gravity="left"
            android:orientation="horizontal"
            android:visibility="visible"
            >

            <!-- images will be added dynamicall to this layout -->
        </LinearLayout>
    </HorizontalScrollView>
//here u can add different EditText or Button or whatever you want
</LinearLayout>

これが誰かを助けることができることを願っています。

于 2015-12-10T14:42:23.280 に答える