我对 android 很陌生,而且我碰壁了。
我正在尝试让线性布局更像一个按钮,按下和长按不同的动作 - 原因是我可以在每个“按钮”上有 2 个不同格式的文本标签。类似于以下内容:
-------------------------
| 2nd | <- Label for long press (regular/smaller type)
| = | <- Label for regular press (bold/larger type)
-------------------------
我发现的帖子解释了如何在线性布局上接收常规点击(我在布局 XML 中使用 onClick 属性)。但是长按我没有运气。我尝试为 xml 定义一个新的 onLongClick 属性,如 Aleksander Gralak 的回答中所述:Long press definition at XML layout, like android:onClick does。但是没有这样的运气 - 它看起来像是用于文本视图,我尝试将其更改为线性布局但惨遭失败。
这是有问题的对象:Main.xml
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:clickable="true"
android:focusable="true"
android:background="@drawable/darkgrey_button"
android:onClick="equals" android:longClickable="true" android:id="equalsbutton"
android:focusableInTouchMode="false">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2nd"
android:id="@+id/textView"
android:duplicateParentState="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" = "
android:id="@+id/textView1"
android:duplicateParentState="true"/>
</LinearLayout>
和Main.java
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void equals(View view) {
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}