3

我有一个包含框架布局的自定义视图。此框架布局包含两个可以滑动的视图 (LinearLayout)。如果我刷第一个,第二个就会出现,反之亦然。其中一个视图有一个按钮,但我不知道为什么,这个按钮就像禁用。我无法单击它,并且 onClick 方法无效。

这里布局 xml 的结构在自定义视图中膨胀:

<FrameLayout>

  <LinearLayout
      android:id="@+id/frontview"
  /> 
  <LinearLayout
      android:id="@+id/backview">
    <Button
       android:layout_height="wrap_content"
       android:layout_width="wrap_content"
       android:id="@+id/ButtonUpdate"
       android:text="@string/bUpdate"
       android:padding="5dp"
       android:clickable="true"
       style="?android:attr/borderlessButtonStyle"
        />
  </LinearLayout>

</FrameLayout>

这是我的自定义视图中的代码:

public class mView extends LinearLayout {

ImageView icon;
TextView current_data;
TextView previous_data;
TextView time ;
Button bUpdate;
EditText TextUpdate;

public mView(Context context) {
    super(context);
    init(context);
}

public mView(Context context, AttributeSet attrs) {
    super(context,attrs);
    init(context);

}

public mView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init(context);
}

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    // nothing
    }
}

public void init(Context pContext) {
    LayoutInflater inflater = (LayoutInflater) pContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View ll = inflater.inflate(R.layout.list_item_data, this, true);

    /** We initialize the elements of our UI **/
    /**
     * First View
     */
    icon= (ImageView) ll.findViewById(R.id.ic_icon);
    current_data = ll.(TextView) findViewById(R.id.current_data);
    previous_data = ll.(TextView) findViewById(R.id.previous_data);
    time = (TextView) ll.findViewById(R.id.time);

    /**
     * Second View
     */
    bUpdate = (Button) ll.findViewById(R.id.ButtonUpdate);
    TextUpdate= (EditText) ll.findViewById(R.id.TextUpdate);
    bUpdate.setOnClickListener(new bUpdateClickListener());        
}

private class bUpdateClickListener implements OnClickListener {
    @Override
    public void onClick(View v) {
        // When the button is clicked, the front view re-appears and the backview disappears
        frontview
                .animate()
                .translationX(0);
        backview
                .animate()
                .translationX(-backview.getMeasuredWidth());

    }
}

onInterceptTouchEvent(MotionEvent ev)使用和正确处理滑动onTouchEvent(MotionEvent ev)

这里是 MyActivity 中使用的 main.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:background="#ffffff">

   <LinearLayout
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="#f6f6f6">

      <TextView
         android:id="@+id/infoimc"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_marginLeft="18dp"
         android:layout_marginTop="8dp"
         android:text="@string/app_name"
         android:textColor="#000000"
         android:textSize="16dp"/>
      <View
         android:id="@+id/divider_infoimc"
         android:layout_width="match_parent"
            android:layout_height="1dip"
            android:layout_marginRight="18dp"
            android:layout_marginLeft="18dp"
            android:background="#99CC00"/>
      <com.example.essai.CustomGraph
         android:id="@+id/CustomGraph"
         android:layout_width="match_parent"
         android:layout_height="200dp"
         android:layout_gravity="center"
         android:visibility="visible"
         android:layout_marginTop="10dp"/>

   </LinearLayout>

   <FrameLayout
      android:layout_width="wrap_content"
      android:layout_height="80dp"
      android:layout_gravity="left|center_vertical">

   <com.example.essai.mView
      android:id="@+id/CustomView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>

   </FrameLayout>

</LinearLayout>

和 MyActivity.class :

public class MyActivity extends Activity {

   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.main);
   }

}

我不知道按钮是否也必须在 Activity 中处理?

谢谢你的帮助 !

4

1 回答 1

3

根本原因

根据API

FrameLayout 旨在阻止屏幕上的一个区域以显示单个项目。

如果有更多的项目,就像你的情况一样,那么“意外”的事情就会发生:

子视图绘制在堆栈中,最近添加的子视图在顶部。

这意味着,您在您frontview的之上,backview并且由于frontview没有android:clickable="true"点击事件(按钮上)没有在下面委托。

解决方案 1

以编程方式重新排序子布局重力。

但是,您可以将多个子项添加到 FrameLayout 并通过使用android:layout_gravity属性为每个子项分配重力来控制它们在 FrameLayout 中的位置。

只需在滑动它们时切换android:layout_gravity="top"和。android:layout_gravity="bottom"

解决方案 2

以编程方式控制子布局的可见性。

backview应该显示 时,将 的可见性设置frontviewView.GONE。并将其设置为View.VISIBLE相反的情况。

解决方案 3

更改FrameLayout为不同的布局类型。

可能需要对布局 xml 进行更多“摆弄”...

查看您最熟悉的内容并相应地选择解决方案 :)

于 2013-10-26T08:00:57.483 回答