在android中动态替换另一个视图的视图?

时间:2015-03-25 08:46:55

标签: android android-custom-view android-videoview

我在我的xml布局文件中添加了自定义视图,即FancyCoverFlow。我想以编程方式在同一位置用视频视图替换此视图。意味着不应该更改其他视图位置。应该在布局文件中显示它们。但只有我的自定义视图应替换为具有与FancyCoverFlow相同位置坐标的视频视图。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout"
xmlns:fcf="http://schemas.android.com/apk/res-auto"
android:background="@drawable/bga"

android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />      

<imageslideractivty.FancyCoverFlow
    android:id="@+id/fancyCoverFlow"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"        
    fcf:maxRotation="45"
    fcf:unselectedAlpha="0.3"
    fcf:unselectedSaturation="0.0"
    fcf:unselectedScale="0.4"
    fcf:scaleDownGravity="0.5"/>
 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >

 <SeekBar
    android:id="@+id/slider"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_centerHorizontal="true"
    android:progressDrawable="@null"
    android:thumb="@drawable/middle"
    android:layout_marginBottom="20dp" />
</LinearLayout>

</LinearLayout>

5 个答案:

答案 0 :(得分:5)

假设您想在按钮的点击事件中显示textView1但不显示textView2:

所以就这样做:

textView1.setVisibility(View.VISIBLE);
textView2.setVisibility(View.GONE);

textview2将消失,如果设置LinearLayout wrap_content的高度,则下半部分将保留textView1的部分

只需使用您的两个视图即FancyCoverFlow和视频视图

答案 1 :(得分:5)

您可以从代码切换其可见性。使用下面的FrameLayout ..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout"
xmlns:fcf="http://schemas.android.com/apk/res-auto"
android:background="@drawable/bga"

android:orientation="vertical">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp">

    <VideoView
        android:layout_width="match_parent"
        android:visibility="invisible"
        android:layout_height="match_parent" />


    <imageslideractivty.FancyCoverFlow
        android:id="@+id/fancyCoverFlow"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="visible"
        fcf:maxRotation="45"
        fcf:unselectedAlpha="0.3"
        fcf:unselectedSaturation="0.0"
        fcf:unselectedScale="0.4"
        fcf:scaleDownGravity="0.5" />

</FrameLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <SeekBar
        android:id="@+id/slider"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_centerHorizontal="true"
        android:progressDrawable="@null"
        android:thumb="@drawable/middle"
        android:layout_marginBottom="20dp" />
</LinearLayout>

答案 2 :(得分:3)

通常有一些方法可以用另一个视图替换一个视图 方法1: 更改视图的可见性 e.x

textView1.setVisibility(View.VISIBLE);
textView2.setVisibility(View.GONE);

此处您不会删除任何视图,只需更改可见性。

方法2: 您可以以编程方式删除视图的所有子项并添加新视图 恩。 你有一个LinewarLayout x;。并且有两个孩子观看TextView y, z;

现在你要用另一个TextView A替换y,z。 您可以像以下

那样实现此目的
x.removeAllViews();

and x.addView(A);

在此处,您无法使用x,y直到重新创建视图。

答案 3 :(得分:2)

为此,您可以使用片段代替。将每个customView放入Fragments中,然后dynamically替换它。

答案 4 :(得分:2)

试试这个,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout"
xmlns:fcf="http://schemas.android.com/apk/res-auto"
android:background="@drawable/bga"

android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textColor="#fff"
    android:textAppearance="?android:attr/textAppearanceMedium" />      

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

 <SeekBar
    android:id="@+id/slider"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_centerHorizontal="true"
    android:progressDrawable="@null"
    android:thumb="@drawable/middle"
    android:layout_marginBottom="20dp" />
</LinearLayout>

</LinearLayout>

上面的xml文件我添加了linearlayout(linDynamic),现在你必须动态添加或替换你的FancyCoverFlow和videoview。