0

我覆盖了一个线性布局。布局包含一个按钮。按钮应该在线性布局的右上角。但重力似乎不起作用。

代码:在我的服务的 onCreate 方法中。

   final WindowManager.LayoutParams params3 = new WindowManager.LayoutParams(
           WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
           WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL  |   WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH |              WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
            PixelFormat.TRANSLUCENT);

   LinearLayout ll=new LinearLayout(this);
   LinearLayout ll2=new LinearLayout(this);
   LinearLayout.LayoutParams lp=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
   lp.gravity=Gravity.RIGHT;
   lp.width=30;
   lp.height=30;

   b=new Button(this);
   b.setBackgroundResource(R.drawable.x);
   params3.gravity=Gravity.TOP;
   params3.height=200;
   params3.width=200;

   ll.addView(b, lp);
   wm.addView(ll, params3);

线性布局 200X200 已创建并位于顶部。但按钮不在右上角。我尝试使用 b.setWidth 和 b.setHeight。不会有帮助的。

4

1 回答 1

2

LinearLayout 默认是水平的 你不能在水平LinearLayout 中水平对齐(例如right、center_horizo​​ntal、left),你不能在垂直LinearLayout 中垂直对齐(例如top center_vertical、bottom)。

如果需要将其向右对齐,则必须将 LinearLayout 设置为垂直或使用不同的 ViewGroup,例如 FrameLayout。

LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinarLayout.VERTICAL);

Ant the Buttom 将始终位于首位,因为它是第一项。为什么不在 xml 中做呢?更少的代码会容易得多。

编辑:要将按钮放在 VideoView 的右上角,您的布局将如下所示。

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

    <VideoView
        android:id="@+id/videoView1"
        android:layout_width="200dp"
        android:layout_height="200dp" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:layout_marginRight="10dp"
        android:layout_alignTop="@+id/videoView1"
        android:layout_alignRight="@+id/videoView1"
        android:text="Button" />

</RelativeLayout>

将此布局放在项目的布局 res 文件夹中。项目/res/layout/your_layout.xml

要将布局附加到 Activity 的窗口:

public final class YourActivity
        extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.your_layout);

        // Get VideoView
        VideoView vv = (VideoView) findViewById(R.id.videoView1);

        //get Button reference
        View button = findViewById(R.id.button1);
    }
}
于 2013-04-19T08:18:51.187 回答