所以我对Android的整个开发工作都很陌生,我不知道一点点java。我试着自学这个,所以我认为这将是一个很好的资源。我已经阅读了devoloper.android资源,我仍然不明白,所以这是我的问题。 我正在制作一个简单的应用程序,它会在按下按钮时改变背景颜色。如何让按钮做到这一点?
非常感谢任何外部资源/示例
到目前为止,这是我的代码:
IntroActivity.java
package com.flashcalc;
import android.app.Activity;
import android.os.Bundle;
import android.view.View.OnTouchListener;
import android.widget.Button;
public class IntroActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
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="fill_parent"
android:layout_height="fill_parent"
android:background="@color/all_white">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:textColor="@color/all_black"
android:gravity="center_horizontal"/>
<Button android:text="@string/ChangeColor"
android:id="@+id/ChangeColor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal|center_horizontal|center"
android:layout_gravity="center_horizontal|center_horizontal|center">
</Button>
</LinearLayout>
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Tjs Flashlight</string>
<string name="app_name">FlashCalc</string>
<string name="ChangeColor">I Love Buttons</string>
<color name="all_white">#FFFFFF</color>
<color name="all_black">#000000</color>
</resources>
答案 0 :(得分:0)
您需要获取linearlayout的视图并设置它的背景颜色。
首先,您需要在xml中为LinearLayout分配一个ID。然后在按钮的onclicklistener中,执行此操作。
LinearLayout ll = (Linearlayout) findViewById(R.id.layoutid);
ll.setBackgroundColor(); //I think this is what it's called
我完全忘记了setBackgroundColor函数中的内容,你必须要查看它。
在尝试自己做这样的事情之前,你应该仔细阅读所有的hello android教程。在你寻求帮助之前,你甚至都没有尝试过任何东西。
答案 1 :(得分:0)
您需要做几件事。首先,您需要为要改变颜色,LinearLayout,TextView或其他任何内容的ID提供id。然后,您需要将代码附加到按钮,以便在单击时运行。有两种方法可以做到这一点。首先,您可以使用XML的onClick处理程序:
android:onClick="buttonChangeColor"
然后在课堂上添加适当的方法:
public void buttonChangeColor(View v) {
LinearLayout ll = (LinearLayout) findViewById(R.id.whateverYouCalledThis);
ll.setBackgroundColor(0xffffff); //white
}
您还可以使用setOnClickListener附加方法: http://developer.android.com/reference/android/view/View.html#setOnClickListener(android.view.View.OnClickListener)
另一件可能有用的事情是将颜色值存储在资源文件中(res / values / colors.xml):
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="color_0">#ffffff</color>
</resources>
然后,您可以在代码中使用该颜色:
ll.setBackgroundColor(getResources().getColor(R.color.color_0));