У меня сложный XML-файл. Вот кусок:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.design.widget.TextInputLayout
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:hint="@string/tel"
style="@style/AppTheme.TextInputLayout"
android:layout_marginBottom="@dimen/space_high">
<android.support.design.widget.TextInputEditText
android:id="@+id/point.j_tel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/AppTheme.TextInputEditText"/>
</android.support.design.widget.TextInputLayout>
<ImageButton
android:layout_gravity="center"
android:id="@+id/point.telEdit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/tab_icon_edit"/>
</LinearLayout>
Я пытаюсь сделать телефонные номера внутри Android: id = "@ + id / point.j_tel" clickable. Я пытался android:autoLink="all"
, android:autolink="phone"
, android:linksClickable="true"
. Но это только привело к тому, что номера телефонов стали подчеркнутыми и полупрозрачными, но не активными. Я также попробовал это в своем Java-коде:
cameraManager = new CameraManager(this);
etNotice = findViewById(R.id.point_c_notice);
getValidations().add(new TextEmptyValidation(this, etNotice));
etNotice.addTextChangedListener(getLastValidation());
tiAddress = findViewById(R.id.point_c_address);
tiTel = findViewById(R.id.point_j_tel);
tiTel.setAutoLinkMask(Linkify.PHONE_NUMBERS);
tiTel.setMovementMethod(new ScrollingMovementMethod());
Я пробовал много вещей в течение двух дней, но ничего не помогало, и я почти сдался. Может быть, у кого-нибудь есть идеи?