我想在按钮点击上打开我的Facebook个人资料链接(在Facebook应用程序上)。如果Facebook应用程序存在,那么Facebook应用程序应该打开我的个人资料。如果app不存在,浏览器应该打开。
怎么做?
答案 0 :(得分:0)
将此添加到Java活动
mfblink = findViewById(R.id.fblink);
mfblink.setMovementMethod(LinkMovementMethod.getInstance());
将此行添加到布局xml
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/mfblink "
android:gravity="bottom"
android:padding="10dp"
android:text="@string/linktofb"
android:background="@drawable/"
android:textAlignment="center"
android:textSize="15sp" />
将此行添加到string.xml
<string name="linktofb">
<a href="https://www.facebook.com/profile"></a>
</string>