Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
58c32f1f
Kaydet (Commit)
58c32f1f
authored
Eyl 21, 2012
tarafından
Andrzej J.R. Hunt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix about dialog image, Fix null device name.
Change-Id: I487582592d468c83030202241d67296a0a1b6aa8
üst
b29ae2b9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
5 deletions
+14
-5
AndroidManifest.xml
android/sdremote/AndroidManifest.xml
+8
-2
libreoffice_logo.9.png
android/sdremote/res/drawable/libreoffice_logo.9.png
+0
-0
dialog_about.xml
android/sdremote/res/layout/dialog_about.xml
+1
-0
strings.xml
android/sdremote/res/values/strings.xml
+1
-0
CommunicationService.java
...ice/impressremote/communication/CommunicationService.java
+4
-3
No files found.
android/sdremote/AndroidManifest.xml
Dosyayı görüntüle @
58c32f1f
...
@@ -36,10 +36,16 @@
...
@@ -36,10 +36,16 @@
android:noHistory=
"true"
>
android:noHistory=
"true"
>
</activity>
</activity>
<service
android:name=
".communication.CommunicationService"
>
<service
android:name=
".communication.CommunicationService"
android:label=
"@string/startpresentation_title"
android:logo=
"@drawable/actionbar_icon_computer"
>
</service>
</service>
<activity
android:name=
".StartPresentationActivity"
>
<activity
android:name=
".StartPresentationActivity"
android:logo=
"@drawable/actionbar_icon_computer"
android:label=
"@string/startpresentation_title"
>
</activity>
</activity>
<activity
<activity
android:name=
".PresentationActivity"
android:name=
".PresentationActivity"
...
...
android/sdremote/res/drawable/libreoffice_logo.9.png
Değiştirilen dosyayı @ görüntüle
b29ae2b9
Dosyayı görüntüle @
58c32f1f
6.92 KB
|
W:
|
H:
11.4 KB
|
W:
|
H:
2-up
Swipe
Onion skin
android/sdremote/res/layout/dialog_about.xml
Dosyayı görüntüle @
58c32f1f
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
android:id=
"@+id/imageView1"
android:id=
"@+id/imageView1"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:scaleType=
"fitXY"
android:src=
"@drawable/libreoffice_logo"
/>
android:src=
"@drawable/libreoffice_logo"
/>
<ScrollView
<ScrollView
...
...
android/sdremote/res/values/strings.xml
Dosyayı görüntüle @
58c32f1f
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
<string
name=
"pairing_instructions_3"
>
Then input this PIN:
</string>
<string
name=
"pairing_instructions_3"
>
Then input this PIN:
</string>
<string
name=
"startpresentation_instruction"
>
No presentation is currently running.
</string>
<string
name=
"startpresentation_instruction"
>
No presentation is currently running.
</string>
<string
name=
"startpresentation_button"
>
Start Presentation
</string>
<string
name=
"startpresentation_button"
>
Start Presentation
</string>
<string
name=
"startpresentation_title"
>
Start Presentation
</string>
<string
name=
"about"
>
About
</string>
<string
name=
"about"
>
About
</string>
<string
name=
"about_close"
>
Close
</string>
<string
name=
"about_close"
>
Close
</string>
<string
name=
"about_versionstring"
>
Version: {0} (Build ID: {1})
</string>
<string
name=
"about_versionstring"
>
Version: {0} (Build ID: {1})
</string>
...
...
android/sdremote/src/org/libreoffice/impressremote/communication/CommunicationService.java
Dosyayı görüntüle @
58c32f1f
...
@@ -40,10 +40,11 @@ public class CommunicationService extends Service implements Runnable {
...
@@ -40,10 +40,11 @@ public class CommunicationService extends Service implements Runnable {
public
static
String
getDeviceName
()
{
public
static
String
getDeviceName
()
{
BluetoothAdapter
aAdapter
=
BluetoothAdapter
.
getDefaultAdapter
();
BluetoothAdapter
aAdapter
=
BluetoothAdapter
.
getDefaultAdapter
();
if
(
aAdapter
!=
null
)
{
if
(
aAdapter
!=
null
)
{
return
aAdapter
.
getName
();
String
aName
=
aAdapter
.
getName
();
}
else
{
if
(
aName
!=
null
)
return
android
.
os
.
Build
.
MODEL
;
return
aName
;
}
}
return
android
.
os
.
Build
.
MODEL
;
}
}
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment