我认为这个问题很容易,但有些事情我无法弄清楚 这里有一个xml文件有一些widjet,还有一个注释按钮,我想查看用户点击按钮的时间,如果他有一个帐户,如果不是我想让他在活动中唱歌, 我知道我应该检查身份或其他事情 对不起这个愚蠢的问题,我将不胜感激
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="life.insomnia.inception.movie_Detailes">
<ImageView
android:id="@+id/poster"
android:layout_width="400dp"
android:layout_height="400dp"
android:layout_weight="1"
app:srcCompat="@drawable/split" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="TextView"
android:layout_alignBottom="@+id/poster"
android:layout_alignParentStart="true"
android:height="60dp"
android:textAlignment="center"
android:textSize="20sp"
android:padding="15dp"
android:textStyle="bold"
android:textColor="#fff"/>
<TextView
android:id="@+id/tag_line"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/poster"
android:layout_margin="20dp"
android:textStyle="italic"
android:textSize="20sp"
android:text="mdfxvcmvcbnjxmk,x.,cmvbvncmx,;x,cmvncm,;zlx,cmvncmx,zlxkcmvnbvncmx,jzlfjfksdhmjkhfdsdhfkjjslknscnfgskjdpodjakdksjflkfuiweroihjszfdlkfhsoifhsdkgushfjdfkgh"
/>
<EditText
android:id="@+id/commenttxt"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="comment here"
android:layout_below="@+id/tag_line"
android:layout_margin="15dp"
/>
<Button
android:id="@+id/commentbtn"
android:layout_width="140dp"
android:layout_height="45dp"
android:layout_below="@+id/commenttxt"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
答案 0 :(得分:0)
您可以为按钮添加ID:
android:id="@+id/someId"
然后在代码中:
Button b = (Button) findViewById(R.id.someId);
b.setOnClickListener(this);//Make sure the class implements onClickListener
然后在onClick(View v)
switch(v.getId()){
case R.id.someId:
//login here
break;
}