1

这是我的 xml 代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:background="@color/blue"
android:gravity="center">

可以从我的活动文件中设置颜色吗?

例如,我可以为按钮执行此操作:

ImageButton x = (ImageButton) this.findViewById(R.id.btn1);
x.setBackgroundColor(color);
4

3 回答 3

2

是的,您可以通过

public class MainActivity {
   private LinearLayout ll;

    @Override
    public void onCreate(...) {
      super.onCreate(...);
      setContentView(R.layout.your_layout_name);
      ll = (LinearLayout) findViewById(R.id.linear_layout_id);

      // You can set Background Color for your Linear Layout
      ll.setBackgroundColor(Color.RED);
      // You can set Image Also
      ll.setBackgroundResource(R.drawable.imagename);
 }
}

在 XML 文件中:

    <LinearLayout 
            android:id="+@id/linear_layout_id"
            android:width = "fill_parent"
            android:height = "fill_parent"
            android:orientation = "vertical"
    />
于 2012-11-10T13:02:51.060 回答
1

就像您为按钮所做的那样,您也可以为 LinearLayout 做同样的事情。给你 Linearlayout 一个 id 并设置颜色:-

((LinearLayout)findViewById(R.id.ll_test)).setBackgroundColor(Color.BLUE);
于 2012-11-10T13:13:57.100 回答
1

嗯,LinearLayout 也有设置器

setBackgroundColor()

继承自 View 类

于 2012-11-10T13:00:54.247 回答