我很抱歉,因爲我在寫了很多類似的問題(我猜你知道)已經存在,但我需要你的幫助。我嘗試了其他帖子中描述的不同方法,但沒有一個適合我。我是Android新手,我有一個簡單的「Hello World!」應用程序。我定製了一個自定義材質設計主題和一個按鈕,也是定製的。我試圖使用「onClick」函數來顯示一個TextView單擊按鈕時,但我不知道該怎麼做。這裏是我的相對佈局:如何使用onClick函數使按鈕顯示文本視圖
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<TextView
android:id="@+id/helloworld1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
android:text="@string/hello_world"/>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/press_here"
android:textColor="@color/White"
android:background="@color/Red"
android:translationY="40dp"/>
這裏是我的MainActivity.java:
package com.giuskiller.material;
import android.app.*;
import android.os.*;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
* 「我嘗試使用 」的onClick「 功能」 * ...這裏是你的代碼的功能? – codeMagic
我刪除了它,因爲它不起作用 –
您仍然應該包含它,以便其他人可以向您顯示您出錯的位置。否則,我們不知道。 – codeMagic