“x-11” Code-Antworten

x-11

<activity ...>
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
Cute Caiman

x-11

public void startStartAnX11Server() {
    Intent intent = new Intent("android.intent.action.VIEW"); 
    intent.setData(dataUri); // x11://host:port 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}
Cute Caiman

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen