1

我有一段代码将我的 db 值解析为我的 android 活动,但我希望它的样式与现在不同。

这是我的代码

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.leesverslag);
    /* Werkt altijd */
    // Create a crude view - this should really be set via the layout resources  
    // but since its an example saves declaring them in the XML.
    LinearLayout rootLayout = new LinearLayout(getApplicationContext());
    txt = new TextView(getApplicationContext());  
    rootLayout.addView(txt);  
    setContentView(rootLayout);
    /* Werkt altijd */
    // Set the text and call the connect function.  
    //txt.setText("Connecting..."); 
    //call the method to run the data retrieval
    txt.setText(getServerData(KEY_121)); 
}

我认为它来了,因为我说,LinearLayout rootLayout = new LinearLayout(getApplicationContect());

但我不知道如何解决这个问题,所以它可以与我自己的布局一起使用。

新的布局正在向我展示。

http://www.wvvzondag2.nl/android/leesverslag.php

{"introtext": "<p>my custom value text for a android application<\/p>"}

我想查看我的 android 应用程序的自定义值文本

这是我的 php 代码。

<?php
header('Content-type: application/json');
$user = '***';  
$pswd = '***';  
$db = '***';  
$conn = mysql_connect('localhost', $user, $pswd);  
mysql_select_db($db, $conn);  
$sql =  mysql_query("SELECT jos_content.introtext FROM jos_content, jos_categories WHERE jos_categories.id = '80' AND jos_content.state = '1' AND jos_categories.id = jos_content.catid AND jos_content.title = '".$_REQUEST['titel']."'");
while($row=mysql_fetch_assoc($sql))
$output[]=$row;
print str_replace('\/','/',json_encode($output));
mysql_close;
?>

有人可以帮我做些什么来让它与我自己的布局一起工作吗?

亲切的问候,帕特里克

4

0 回答 0